Lines Matching defs:new_tex
213 ir_texture *new_tex = new(mem_ctx) ir_texture(this->op, this->is_sparse);
214 new_tex->type = this->type;
216 new_tex->sampler = this->sampler->clone(mem_ctx, ht);
218 new_tex->coordinate = this->coordinate->clone(mem_ctx, ht);
220 new_tex->projector = this->projector->clone(mem_ctx, ht);
222 new_tex->shadow_comparator = this->shadow_comparator->clone(mem_ctx, ht);
224 new_tex->clamp = this->clamp->clone(mem_ctx, ht);
227 new_tex->offset = this->offset->clone(mem_ctx, ht);
237 new_tex->lod_info.bias = this->lod_info.bias->clone(mem_ctx, ht);
242 new_tex->lod_info.lod = this->lod_info.lod->clone(mem_ctx, ht);
245 new_tex->lod_info.sample_index = this->lod_info.sample_index->clone(mem_ctx, ht);
248 new_tex->lod_info.grad.dPdx = this->lod_info.grad.dPdx->clone(mem_ctx, ht);
249 new_tex->lod_info.grad.dPdy = this->lod_info.grad.dPdy->clone(mem_ctx, ht);
252 new_tex->lod_info.component = this->lod_info.component->clone(mem_ctx, ht);
256 return new_tex;