wined3d: Disable the scissor test for depth blits.

This commit is contained in:
H. Verbeet 2007-04-10 19:14:10 +02:00 committed by Alexandre Julliard
parent 384ad311f3
commit 8d3c078e6c
1 changed files with 1 additions and 0 deletions

View File

@ -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);