mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
Reformat all the things!
This commit is contained in:
@ -573,8 +573,10 @@ private:
|
||||
auto x = j * 2;
|
||||
auto y = i * 2;
|
||||
const std::array<PixelRGBAf, 4> samples{{
|
||||
Sample(src, src_shape, x, y), Sample(src, src_shape, x + 1, y),
|
||||
Sample(src, src_shape, x, y + 1), Sample(src, src_shape, x + 1, y + 1),
|
||||
Sample(src, src_shape, x, y),
|
||||
Sample(src, src_shape, x + 1, y),
|
||||
Sample(src, src_shape, x, y + 1),
|
||||
Sample(src, src_shape, x + 1, y + 1),
|
||||
}};
|
||||
|
||||
auto* dst_pixel = dst + (j + i * dst_shape.row_length) * 4;
|
||||
|
Reference in New Issue
Block a user