mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 22:05:38 +00:00
GPU: Fix off-by-one in rectangle rendering
This commit is contained in:
parent
77b15d156d
commit
1c8e326624
|
@ -77,8 +77,8 @@ void GPU_HW::LoadVertices(RenderCommand rc, u32 num_vertices)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: This should repeat the texcoords instead of stretching
|
// TODO: This should repeat the texcoords instead of stretching
|
||||||
const s32 pos_right = pos_left + (rectangle_width - 1);
|
const s32 pos_right = pos_left + rectangle_width;
|
||||||
const s32 pos_bottom = pos_top + (rectangle_height - 1);
|
const s32 pos_bottom = pos_top + rectangle_height;
|
||||||
const u8 tex_right = static_cast<u8>(tex_left + (rectangle_width - 1));
|
const u8 tex_right = static_cast<u8>(tex_left + (rectangle_width - 1));
|
||||||
const u8 tex_bottom = static_cast<u8>(tex_top + (rectangle_height - 1));
|
const u8 tex_bottom = static_cast<u8>(tex_top + (rectangle_height - 1));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue