GL: front face regression fix (#1854)

This commit is contained in:
raven02 2016-07-01 20:47:56 +08:00 committed by GitHub
parent 45d41267f5
commit c3bac7c92b
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ void GLGSRender::begin()
__glcheck glCullFace(rsx::method_registers[NV4097_SET_CULL_FACE]);
}
__glcheck glFrontFace(get_front_face_ccw(rsx::method_registers[NV4097_SET_FRONT_FACE]));
__glcheck glFrontFace(get_front_face_ccw(rsx::method_registers[NV4097_SET_FRONT_FACE] ^ 1));
__glcheck enable(rsx::method_registers[NV4097_SET_POLY_SMOOTH_ENABLE], GL_POLYGON_SMOOTH);