Lines Matching defs:texel
7213 ir_variable *texel = NULL;
7215 texel = out_var(return_type, "texel");
7216 sig->parameters.push_tail(texel);
7243 body.emit(assign(texel, record_ref(r, "texel")));
7285 ir_variable *texel = NULL;
7287 texel = out_var(return_type, "texel");
7288 sig->parameters.push_tail(texel);
7300 body.emit(assign(texel, record_ref(r, "texel")));
7348 ir_variable *texel = out_var(return_type, "texel");
7349 sig->parameters.push_tail(texel);
7353 body.emit(assign(texel, record_ref(r, "texel")));
8156 glsl_struct_field(data_type, "texel"),
8287 ir_dereference_record *texel_field = record_ref(ret_val, "texel");
8288 ir_variable *texel = out_var(texel_field->type, "texel");
8290 /* Add texel param to builtin function after call intrinsic function
8292 * struct {int code; gvec4 texel;} __intrinsic_image_sparse_load(in)
8293 * int sparseImageLoad(in, out texel)
8296 sig->parameters.push_tail(texel);
8298 body.emit(assign(texel, texel_field));