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

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

Completed in 155 milliseconds