Searched refs:valMask (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_quad_depth_test.c | 356 unsigned ref, unsigned valMask) in do_stencil_test() argument 364 refs[j] = data->shader_stencil_refs[j] & valMask; in do_stencil_test() 366 refs[j] = ref & valMask; in do_stencil_test() 375 if (refs[j] < (data->stencilVals[j] & valMask)) { in do_stencil_test() 382 if (refs[j] == (data->stencilVals[j] & valMask)) { in do_stencil_test() 389 if (refs[j] <= (data->stencilVals[j] & valMask)) { in do_stencil_test() 396 if (refs[j] > (data->stencilVals[j] & valMask)) { in do_stencil_test() 403 if (refs[j] != (data->stencilVals[j] & valMask)) { in do_stencil_test() 410 if (refs[j] >= (data->stencilVals[j] & valMask)) { in do_stencil_test() 627 ubyte ref, wrtMask, valMask; in depth_stencil_test_quad() local [all …]
|
/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/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/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()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderIntegerFunctionTests.cpp | 921 const deUint32 valMask = (bits == 32 ? ~0u : ((1u<<bits)-1u)); in compare() local 922 const deUint32 baseVal = (offset == 32) ? (0) : ((value >> offset) & valMask); in compare() 923 const deUint32 ref = baseVal | ((isSigned && (baseVal & (1<<(bits-1)))) ? ~valMask : 0u); in compare()
|