mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-13 04:52:06 +00:00
OGL: Drop BlendingState.dither
How GL_DITHER works is implementation-defined, and we handle the non-blended case in the pixel shader.
This commit is contained in:
parent
ddc5275071
commit
fd896bd9e0
3 changed files with 5 additions and 12 deletions
|
@ -1274,11 +1274,6 @@ void Renderer::SetBlendMode(bool forceUpdate)
|
|||
glDisable(GL_COLOR_LOGIC_OP);
|
||||
}
|
||||
|
||||
if (state.dither)
|
||||
glEnable(GL_DITHER);
|
||||
else
|
||||
glDisable(GL_DITHER);
|
||||
|
||||
glColorMask(state.colorupdate, state.colorupdate, state.colorupdate, state.alphaupdate);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue