diff options
| author | 2019-02-23 21:22:54 -0300 | |
|---|---|---|
| committer | 2019-02-26 20:08:27 -0300 | |
| commit | 0ccd490fcda4f3d1cff3a9ee092dd3ee22ef1c1f (patch) | |
| tree | af095aa4a2376398bdb390729373ddf1b50ea39a /src/video_core/textures/decoders.cpp | |
| parent | Merge pull request #2156 from FreddyFunk/patch-1 (diff) | |
| download | yuzu-0ccd490fcda4f3d1cff3a9ee092dd3ee22ef1c1f.tar.gz yuzu-0ccd490fcda4f3d1cff3a9ee092dd3ee22ef1c1f.tar.xz yuzu-0ccd490fcda4f3d1cff3a9ee092dd3ee22ef1c1f.zip | |
decoders: Minor style changes
Diffstat (limited to 'src/video_core/textures/decoders.cpp')
| -rw-r--r-- | src/video_core/textures/decoders.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index 5db75de22..150612aed 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp | |||
| @@ -103,8 +103,8 @@ void FastProcessBlock(u8* const swizzled_data, u8* const unswizzled_data, const | |||
| 103 | const u32 swizzle_offset{y_address + table[(xb / fast_swizzle_align) % 4]}; | 103 | const u32 swizzle_offset{y_address + table[(xb / fast_swizzle_align) % 4]}; |
| 104 | const u32 out_x = xb * out_bytes_per_pixel / bytes_per_pixel; | 104 | const u32 out_x = xb * out_bytes_per_pixel / bytes_per_pixel; |
| 105 | const u32 pixel_index{out_x + pixel_base}; | 105 | const u32 pixel_index{out_x + pixel_base}; |
| 106 | data_ptrs[unswizzle] = swizzled_data + swizzle_offset; | 106 | data_ptrs[unswizzle ? 1 : 0] = swizzled_data + swizzle_offset; |
| 107 | data_ptrs[!unswizzle] = unswizzled_data + pixel_index; | 107 | data_ptrs[unswizzle ? 0 : 1] = unswizzled_data + pixel_index; |
| 108 | std::memcpy(data_ptrs[0], data_ptrs[1], fast_swizzle_align); | 108 | std::memcpy(data_ptrs[0], data_ptrs[1], fast_swizzle_align); |
| 109 | } | 109 | } |
| 110 | pixel_base += stride_x; | 110 | pixel_base += stride_x; |