Searched refs:valMask (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_quad_depth_test.c | 343 unsigned ref, unsigned valMask) in do_stencil_test() argument 351 refs[j] = data->shader_stencil_refs[j] & valMask; in do_stencil_test() 353 refs[j] = ref & valMask; in do_stencil_test() 362 if (refs[j] < (data->stencilVals[j] & valMask)) { in do_stencil_test() 369 if (refs[j] == (data->stencilVals[j] & valMask)) { in do_stencil_test() 376 if (refs[j] <= (data->stencilVals[j] & valMask)) { in do_stencil_test() 383 if (refs[j] > (data->stencilVals[j] & valMask)) { in do_stencil_test() 390 if (refs[j] != (data->stencilVals[j] & valMask)) { in do_stencil_test() 397 if (refs[j] >= (data->stencilVals[j] & valMask)) { in do_stencil_test() 614 ubyte ref, wrtMask, valMask; in depth_stencil_test_quad() local [all …]
|
/external/deqp/modules/gles2/functional/ |
D | es2fStencilTests.cpp | 557 int valMask = (1<<stencilBits)-1; in init() 560 …StencilOp op = StencilOp::quad(GL_EQUAL, (~targetStencil | ~mask) & valMask, GL_ALWAYS, 0.0f, GL_K… in init()
|
/external/deqp/modules/gles3/functional/ |
D | es3fStencilTests.cpp | 560 int valMask = (1<<stencilBits)-1; in init() 563 …StencilOp op = StencilOp::quad(GL_EQUAL, (~targetStencil | ~mask) & valMask, GL_ALWAYS, 0.0f, GL_K… in init()
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderIntegerFunctionTests.cpp | 774 const deUint32 valMask = (bits == 32 ? ~0u : ((1u<<bits)-1u)); in compare() local 775 const deUint32 baseVal = (offset == 32) ? (0) : ((value >> offset) & valMask); in compare() 776 const deUint32 ref = baseVal | ((isSigned && (baseVal & (1<<(bits-1)))) ? ~valMask : 0u); in compare()
|