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/src/libGLESv2/renderer/d3d11/
renderer11_utils.cpp 140 D3D11_STENCIL_OP d3dStencilOp = D3D11_STENCIL_OP_KEEP;
144 case GL_ZERO: d3dStencilOp = D3D11_STENCIL_OP_ZERO; break;
145 case GL_KEEP: d3dStencilOp = D3D11_STENCIL_OP_KEEP; break;
146 case GL_REPLACE: d3dStencilOp = D3D11_STENCIL_OP_REPLACE; break;
147 case GL_INCR: d3dStencilOp = D3D11_STENCIL_OP_INCR_SAT; break;
148 case GL_DECR: d3dStencilOp = D3D11_STENCIL_OP_DECR_SAT; break;
149 case GL_INVERT: d3dStencilOp = D3D11_STENCIL_OP_INVERT; break;
150 case GL_INCR_WRAP: d3dStencilOp = D3D11_STENCIL_OP_INCR; break;
151 case GL_DECR_WRAP: d3dStencilOp = D3D11_STENCIL_OP_DECR; break;
155 return d3dStencilOp;
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
renderer9_utils.cpp 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
    [all...]

Completed in 74 milliseconds