Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/program/
Dprog_execute.c434 test_cc(GLuint condCode, GLuint ccMaskRule) in test_cc() argument
437 case COND_EQ: return (condCode == COND_EQ); in test_cc()
438 case COND_NE: return (condCode != COND_EQ); in test_cc()
439 case COND_LT: return (condCode == COND_LT); in test_cc()
440 case COND_GE: return (condCode == COND_GT || condCode == COND_EQ); in test_cc()
441 case COND_LE: return (condCode == COND_LT || condCode == COND_EQ); in test_cc()
442 case COND_GT: return (condCode == COND_GT); in test_cc()