mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-19 14:47:58 -05:00
gl_rasterizer_cache: Invert conditional in LoadGLBuffer()
It's generally easier to follow code using conditionals that operate in terms of the true case followed by the false case (no chance of overlooking the exclamation mark).
This commit is contained in:
@ -456,15 +456,15 @@ void CachedSurface::LoadGLBuffer() {
|
|||||||
|
|
||||||
MICROPROFILE_SCOPE(OpenGL_SurfaceLoad);
|
MICROPROFILE_SCOPE(OpenGL_SurfaceLoad);
|
||||||
|
|
||||||
if (!params.is_tiled) {
|
if (params.is_tiled) {
|
||||||
const u8* const texture_src_data_end = texture_src_data + copy_size;
|
|
||||||
|
|
||||||
gl_buffer.assign(texture_src_data, texture_src_data_end);
|
|
||||||
} else {
|
|
||||||
gl_buffer.resize(copy_size);
|
gl_buffer.resize(copy_size);
|
||||||
|
|
||||||
morton_to_gl_fns[static_cast<size_t>(params.pixel_format)](
|
morton_to_gl_fns[static_cast<size_t>(params.pixel_format)](
|
||||||
params.width, params.block_height, params.height, gl_buffer.data(), params.addr);
|
params.width, params.block_height, params.height, gl_buffer.data(), params.addr);
|
||||||
|
} else {
|
||||||
|
const u8* const texture_src_data_end = texture_src_data + copy_size;
|
||||||
|
|
||||||
|
gl_buffer.assign(texture_src_data, texture_src_data_end);
|
||||||
}
|
}
|
||||||
|
|
||||||
ConvertFormatAsNeeded_LoadGLBuffer(gl_buffer, params.pixel_format, params.width, params.height);
|
ConvertFormatAsNeeded_LoadGLBuffer(gl_buffer, params.pixel_format, params.width, params.height);
|
||||||
|
Reference in New Issue
Block a user