Searched refs:condCode (Results 1 – 1 of 1) sorted by relevance
434 test_cc(GLuint condCode, GLuint ccMaskRule) in test_cc() argument437 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()