Home
last modified time | relevance | path

Searched refs:SAMPLE_REGISTER_STENCIL_COMPARE (Results 1 – 1 of 1) sorted by relevance

/external/deqp/framework/referencerenderer/
DrrFragmentOperations.cpp94 #define SAMPLE_REGISTER_STENCIL_COMPARE(COMPARE_EXPRESSION) \ in executeStencilCompare() macro
115 case TESTFUNC_NEVER: SAMPLE_REGISTER_STENCIL_COMPARE(false) break; in executeStencilCompare()
116 case TESTFUNC_ALWAYS: SAMPLE_REGISTER_STENCIL_COMPARE(true) break; in executeStencilCompare()
117 case TESTFUNC_LESS: SAMPLE_REGISTER_STENCIL_COMPARE(maskedRef < maskedBuf) break; in executeStencilCompare()
118 case TESTFUNC_LEQUAL: SAMPLE_REGISTER_STENCIL_COMPARE(maskedRef <= maskedBuf) break; in executeStencilCompare()
119 case TESTFUNC_GREATER: SAMPLE_REGISTER_STENCIL_COMPARE(maskedRef > maskedBuf) break; in executeStencilCompare()
120 case TESTFUNC_GEQUAL: SAMPLE_REGISTER_STENCIL_COMPARE(maskedRef >= maskedBuf) break; in executeStencilCompare()
121 case TESTFUNC_EQUAL: SAMPLE_REGISTER_STENCIL_COMPARE(maskedRef == maskedBuf) break; in executeStencilCompare()
122 case TESTFUNC_NOTEQUAL: SAMPLE_REGISTER_STENCIL_COMPARE(maskedRef != maskedBuf) break; in executeStencilCompare()
127 #undef SAMPLE_REGISTER_STENCIL_COMPARE in executeStencilCompare()