Home | History | Annotate | Download | only in glsl

Lines Matching defs:mem_ctx

42    var = new(mem_ctx) ir_variable(type, name, ir_var_temporary);
51 void *mem_ctx = ralloc_parent(lhs.val);
53 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs.val,
69 void *mem_ctx = ralloc_parent(a.val);
71 return new(mem_ctx) ir_swizzle(a.val,
82 void *mem_ctx = ralloc_parent(a.val);
91 return new(mem_ctx) ir_swizzle(a.val, s, components);
163 void *mem_ctx = ralloc_parent(a.val);
165 return new(mem_ctx) ir_expression(op, a.val);
171 void *mem_ctx = ralloc_parent(a.val);
173 return new(mem_ctx) ir_expression(op, a.val, b.val);
199 void *mem_ctx = ralloc_parent(a.val);
202 expr(ir_binop_min, a, new(mem_ctx) ir_constant(1.0f)),
203 new(mem_ctx) ir_constant(0.0f));