Commit aca8ab91 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

wined3d: Use the core version of the INCR_WRAP and DECR_WRAP tokens.

parent 04fa54fc
......@@ -786,9 +786,9 @@ static GLenum gl_stencil_op(enum wined3d_stencil_op op)
case WINED3D_STENCIL_OP_INVERT:
return GL_INVERT;
case WINED3D_STENCIL_OP_INCR:
return GL_INCR_WRAP_EXT;
return GL_INCR_WRAP;
case WINED3D_STENCIL_OP_DECR:
return GL_DECR_WRAP_EXT;
return GL_DECR_WRAP;
default:
FIXME("Unrecognized stencil op %#x.\n", op);
return GL_KEEP;
......
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