Commit 8d3c078e authored by H. Verbeet's avatar H. Verbeet Committed by Alexandre Julliard

wined3d: Disable the scissor test for depth blits.

parent 384ad311
......@@ -765,6 +765,7 @@ static void depth_blt(IWineD3DDevice *iface, GLuint texture) {
glDisable(GL_CULL_FACE);
glDisable(GL_BLEND);
glDisable(GL_ALPHA_TEST);
glDisable(GL_SCISSOR_TEST);
glDisable(GL_STENCIL_TEST);
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_ALWAYS);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment