Lines Matching defs:mask
157 GLbitfield mask;
201 mask = ctx->Light._EnabledLights;
202 while (mask) {
203 const int i = u_bit_scan(&mask);
247 mask = ctx->Texture._EnabledCoordUnits | ctx->Texture._TexGenEnabled
249 while (mask) {
250 const int i = u_bit_scan(&mask);
542 struct ureg reg, GLuint mask )
547 dst->WriteMask = mask ? mask : WRITEMASK_XYZW;
573 GLuint mask,
616 emit_dst( &inst->DstReg, dest, mask );
622 #define emit_op3(p, op, dst, mask, src0, src1, src2) \
623 emit_op3fn(p, op, dst, mask, src0, src1, src2, __func__, __LINE__)
625 #define emit_op2(p, op, dst, mask, src0, src1) \
626 emit_op3fn(p, op, dst, mask, src0, src1, undef, __func__, __LINE__)
628 #define emit_op1(p, op, dst, mask, src0) \
629 emit_op3fn(p, op, dst, mask, src0, undef, undef, __func__, __LINE__)