mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-22 22:01:46 +00:00
[client] egl: fix out by one error with letterbox rendering
This replaces the scaled `destRect` with a version that uses doubles correcting the rounding error that is causing a failure to properly clear the black bar areas.
This commit is contained in:
parent
55703b61b7
commit
4b4a75475a
2 changed files with 6 additions and 1 deletions
|
@ -87,7 +87,7 @@ struct Inst
|
|||
|
||||
int width, height;
|
||||
float uiScale;
|
||||
LG_RendererRect destRect;
|
||||
struct DoubleRect destRect;
|
||||
LG_RendererRotate rotate; //client side rotation
|
||||
|
||||
float translateX , translateY;
|
||||
|
|
|
@ -38,6 +38,11 @@ struct Rect
|
|||
int x, y, w, h;
|
||||
};
|
||||
|
||||
struct DoubleRect
|
||||
{
|
||||
double x, y, w, h;
|
||||
};
|
||||
|
||||
struct Border
|
||||
{
|
||||
int left, top, right, bottom;
|
||||
|
|
Loading…
Reference in a new issue