Searched refs:emit_sop (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_wm_emit.c | 608 void emit_sop(struct brw_compile *p, in emit_sop() function 636 emit_sop(p, dst, mask, BRW_CONDITIONAL_L, arg0, arg1); in emit_slt() 645 emit_sop(p, dst, mask, BRW_CONDITIONAL_LE, arg0, arg1); in emit_sle() 654 emit_sop(p, dst, mask, BRW_CONDITIONAL_G, arg0, arg1); in emit_sgt() 663 emit_sop(p, dst, mask, BRW_CONDITIONAL_GE, arg0, arg1); in emit_sge() 672 emit_sop(p, dst, mask, BRW_CONDITIONAL_EQ, arg0, arg1); in emit_seq() 681 emit_sop(p, dst, mask, BRW_CONDITIONAL_NEQ, arg0, arg1); in emit_sne()
|
D | brw_vs_emit.c | 503 static void emit_sop( struct brw_vs_compile *c, in emit_sop() function 522 emit_sop(c, dst, arg0, arg1, BRW_CONDITIONAL_EQ); in emit_seq() 530 emit_sop(c, dst, arg0, arg1, BRW_CONDITIONAL_NEQ); in emit_sne() 537 emit_sop(c, dst, arg0, arg1, BRW_CONDITIONAL_L); in emit_slt() 545 emit_sop(c, dst, arg0, arg1, BRW_CONDITIONAL_LE); in emit_sle() 553 emit_sop(c, dst, arg0, arg1, BRW_CONDITIONAL_G); in emit_sgt() 561 emit_sop(c, dst, arg0, arg1, BRW_CONDITIONAL_GE); in emit_sge()
|
D | brw_wm.h | 436 void emit_sop(struct brw_compile *p,
|