HomeSort by relevance Sort by last modified time
    Searched refs:d3dStencilOp (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
renderer9_utils.cpp 89 D3DSTENCILOP ConvertStencilOp(GLenum stencilOp)
91 D3DSTENCILOP d3dStencilOp = D3DSTENCILOP_KEEP;
95 case GL_ZERO: d3dStencilOp = D3DSTENCILOP_ZERO; break;
96 case GL_KEEP: d3dStencilOp = D3DSTENCILOP_KEEP; break;
97 case GL_REPLACE: d3dStencilOp = D3DSTENCILOP_REPLACE; break;
98 case GL_INCR: d3dStencilOp = D3DSTENCILOP_INCRSAT; break;
99 case GL_DECR: d3dStencilOp = D3DSTENCILOP_DECRSAT; break;
100 case GL_INVERT: d3dStencilOp = D3DSTENCILOP_INVERT; break;
101 case GL_INCR_WRAP: d3dStencilOp = D3DSTENCILOP_INCR; break
    [all...]
renderer11_utils.cpp 135 D3D11_STENCIL_OP d3dStencilOp = D3D11_STENCIL_OP_KEEP;
139 case GL_ZERO: d3dStencilOp = D3D11_STENCIL_OP_ZERO; break;
140 case GL_KEEP: d3dStencilOp = D3D11_STENCIL_OP_KEEP; break;
141 case GL_REPLACE: d3dStencilOp = D3D11_STENCIL_OP_REPLACE; break;
142 case GL_INCR: d3dStencilOp = D3D11_STENCIL_OP_INCR_SAT; break;
143 case GL_DECR: d3dStencilOp = D3D11_STENCIL_OP_DECR_SAT; break;
144 case GL_INVERT: d3dStencilOp = D3D11_STENCIL_OP_INVERT; break;
145 case GL_INCR_WRAP: d3dStencilOp = D3D11_STENCIL_OP_INCR; break;
146 case GL_DECR_WRAP: d3dStencilOp = D3D11_STENCIL_OP_DECR; break;
150 return d3dStencilOp;
    [all...]

Completed in 1772 milliseconds