Home | History | Annotate | Download | only in glsl

Lines Matching refs:op1

208 			     ir_rvalue *op0, ir_rvalue *op1)
210 assert(((op1 == NULL) && (get_num_operands(ir_expression_operation(op)) == 1))
216 this->operands[1] = op1;
222 ir_rvalue *op0, ir_rvalue *op1,
229 this->operands[1] = op1;
281 ir_expression::ir_expression(int op, ir_rvalue *op0, ir_rvalue *op1)
287 this->operands[1] = op1;
306 this->type = op1->type;
307 } else if (op1->type->is_scalar()) {
311 assert(!op0->type->is_matrix() && !op1->type->is_matrix());
312 assert(op0->type == op1->type);
320 this->type = op1->type;
321 } else if (op1->type->is_scalar()) {