Home | History | Annotate | Download | only in glsl

Lines Matching full:used

30  * they're used before the variable is completely reassigned.
60 /* bitmask of xyzw channels written that haven't been used so far. */
71 void kill_channels(ir_variable *const var, int used)
80 entry->available, used);
81 entry->available &= ~used;
106 int used = 0;
107 used |= 1 << ir->mask.x;
108 used |= 1 << ir->mask.y;
109 used |= 1 << ir->mask.z;
110 used |= 1 << ir->mask.w;
112 kill_channels(deref->var, used);
156 /* Kill assignment entries for things used to produce this assignment. */
162 /* Kill assignment enties used as array indices.