Home | History | Annotate | Download | only in glsl

Lines Matching refs:ir

34 #include "ir.h"
42 ir_expression_flattening_visitor(bool (*predicate)(ir_instruction *ir))
53 bool (*predicate)(ir_instruction *ir);
58 bool (*predicate)(ir_instruction *ir))
63 ir_instruction *ir = (ir_instruction *)iter.get();
65 ir->accept(&v);
74 ir_rvalue *ir = *rvalue;
76 if (!ir || !this->predicate(ir))
79 void *ctx = ralloc_parent(ir);
81 var = new(ctx) ir_variable(ir->type, "flattening_tmp", ir_var_temporary);
85 ir,