Home | History | Annotate | Download | only in glsl

Lines Matching refs:op0

200 			     ir_rvalue *op0)
206 this->operands[0] = op0;
213 ir_rvalue *op0, ir_rvalue *op1)
220 this->operands[0] = op0;
227 ir_rvalue *op0, ir_rvalue *op1,
233 this->operands[0] = op0;
239 ir_expression::ir_expression(int op, ir_rvalue *op0)
244 this->operands[0] = op0;
275 this->type = op0->type;
283 op0->type->vector_elements, 1);
292 op0->type->vector_elements, 1);
298 op0->type->vector_elements, 1);
305 op0->type->vector_elements, 1);
318 this->type = op0->type;
323 ir_expression::ir_expression(int op, ir_rvalue *op0, ir_rvalue *op1)
328 this->operands[0] = op0;
349 if (op0->type->is_scalar()) {
352 this->type = op0->type;
355 assert(!op0->type->is_matrix() && !op1->type->is_matrix());
356 assert(op0->type == op1->type);
357 this->type = op0->type;
367 if (op0->type->is_scalar()) {
370 this->type = op0->type;
380 assert(op0->type == op1->type);
382 op0->type->vector_elements, 1);
391 this->type = op0->type;