[client] egl: correct letterbox area clear attempt #2 :)

This commit is contained in:
Geoffrey McRae 2021-08-07 03:44:47 +10:00
parent ec56b2760a
commit 9f6ad864ed

View File

@ -860,7 +860,7 @@ inline static void renderLetterBox(struct Inst * this)
glClear(GL_COLOR_BUFFER_BIT);
float x2 = this->destRect.x + this->destRect.w;
glScissor(x2, 0.0f, this->width - x2 - 0.5f, this->height);
glScissor(x2 + 0.5, 0.0f, this->width - x2, this->height);
glClear(GL_COLOR_BUFFER_BIT);
}
@ -870,7 +870,7 @@ inline static void renderLetterBox(struct Inst * this)
glClear(GL_COLOR_BUFFER_BIT);
float y2 = this->destRect.y + this->destRect.h;
glScissor(0.0f, y2, this->width, this->height - y2 - 0.5f);
glScissor(0.0f, y2 + 0.5, this->width, this->height - y2);
glClear(GL_COLOR_BUFFER_BIT);
}