Home | History | Annotate | Download | only in glsl

Lines Matching refs:op

67       ir_rvalue *op = ir->operands[i];
69 while (op != NULL) {
70 switch (op->ir_type) {
72 const ir_constant *const c = op->as_constant();
77 op = NULL;
82 ir_dereference_variable *const d = (ir_dereference_variable *) op;
88 op = NULL;
93 ir_expression *const ex = (ir_expression *) op;
98 op = ex->operands[0];
103 op = ((ir_swizzle *) op)->val;