mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 12:05:23 +00:00
Regression fix https://github.com/DHrpcs3/rpcs3/issues/697
This commit is contained in:
parent
c41be3a964
commit
a7bc421137
1 changed files with 6 additions and 0 deletions
|
@ -917,6 +917,12 @@ void GLGSRender::ExecCMD()
|
|||
|
||||
InitDrawBuffers();
|
||||
|
||||
if (m_set_color_mask)
|
||||
{
|
||||
glColorMask(m_color_mask_r, m_color_mask_g, m_color_mask_b, m_color_mask_a);
|
||||
checkForGlError("glColorMask");
|
||||
}
|
||||
|
||||
Enable(m_set_depth_test, GL_DEPTH_TEST);
|
||||
Enable(m_set_alpha_test, GL_ALPHA_TEST);
|
||||
Enable(m_set_depth_bounds_test, GL_DEPTH_BOUNDS_TEST_EXT);
|
||||
|
|
Loading…
Add table
Reference in a new issue