Home | History | Annotate | Download | only in d3d9

Lines Matching refs:d3dStencilOp

94 D3DSTENCILOP ConvertStencilOp(GLenum stencilOp)
96 D3DSTENCILOP d3dStencilOp = D3DSTENCILOP_KEEP;
100 case GL_ZERO: d3dStencilOp = D3DSTENCILOP_ZERO; break;
101 case GL_KEEP: d3dStencilOp = D3DSTENCILOP_KEEP; break;
102 case GL_REPLACE: d3dStencilOp = D3DSTENCILOP_REPLACE; break;
103 case GL_INCR: d3dStencilOp = D3DSTENCILOP_INCRSAT; break;
104 case GL_DECR: d3dStencilOp = D3DSTENCILOP_DECRSAT; break;
105 case GL_INVERT: d3dStencilOp = D3DSTENCILOP_INVERT; break;
106 case GL_INCR_WRAP: d3dStencilOp = D3DSTENCILOP_INCR; break;
107 case GL_DECR_WRAP: d3dStencilOp = D3DSTENCILOP_DECR; break;
111 return d3dStencilOp;