remove glIsEnabled(GL_BLEND), we do restore state after it, so it doesn't matter
This commit is contained in:
parent
4a463f4588
commit
011e326698
|
@ -633,17 +633,12 @@ void Renderer::RenderText(const char *text, int left, int top, u32 color)
|
||||||
const int nBackbufferWidth = (int)GLInterface->GetBackBufferWidth();
|
const int nBackbufferWidth = (int)GLInterface->GetBackBufferWidth();
|
||||||
const int nBackbufferHeight = (int)GLInterface->GetBackBufferHeight();
|
const int nBackbufferHeight = (int)GLInterface->GetBackBufferHeight();
|
||||||
|
|
||||||
glEnable(GL_BLEND);
|
|
||||||
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
||||||
|
|
||||||
s_pfont->printMultilineText(text,
|
s_pfont->printMultilineText(text,
|
||||||
left * 2.0f / (float)nBackbufferWidth - 1,
|
left * 2.0f / (float)nBackbufferWidth - 1,
|
||||||
1 - top * 2.0f / (float)nBackbufferHeight,
|
1 - top * 2.0f / (float)nBackbufferHeight,
|
||||||
0, nBackbufferWidth, nBackbufferHeight, color);
|
0, nBackbufferWidth, nBackbufferHeight, color);
|
||||||
|
|
||||||
GL_REPORT_ERRORD();
|
GL_REPORT_ERRORD();
|
||||||
|
|
||||||
glDisable(GL_BLEND);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TargetRectangle Renderer::ConvertEFBRectangle(const EFBRectangle& rc)
|
TargetRectangle Renderer::ConvertEFBRectangle(const EFBRectangle& rc)
|
||||||
|
@ -1336,17 +1331,15 @@ void Renderer::Swap(u32 xfbAddr, FieldType field, u32 fbWidth, u32 fbHeight,cons
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
GL_REPORT_ERRORD();
|
GL_REPORT_ERRORD();
|
||||||
|
|
||||||
|
glEnable(GL_BLEND);
|
||||||
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||||
|
|
||||||
DrawDebugText();
|
DrawDebugText();
|
||||||
DrawDebugInfo();
|
DrawDebugInfo();
|
||||||
|
|
||||||
GL_REPORT_ERRORD();
|
GL_REPORT_ERRORD();
|
||||||
|
|
||||||
// Get the status of the Blend mode
|
|
||||||
GLboolean blend_enabled = glIsEnabled(GL_BLEND);
|
|
||||||
glDisable(GL_BLEND);
|
|
||||||
OSD::DrawMessages();
|
OSD::DrawMessages();
|
||||||
if (blend_enabled)
|
|
||||||
glEnable(GL_BLEND);
|
|
||||||
GL_REPORT_ERRORD();
|
GL_REPORT_ERRORD();
|
||||||
|
|
||||||
// Copy the rendered frame to the real window
|
// Copy the rendered frame to the real window
|
||||||
|
|
Loading…
Reference in New Issue