Home | History | Annotate | Download | only in svga

Lines Matching defs:tex

61    struct svga_texture *tex = svga_texture(pt); 
93 if (tex->cached_view &&
94 tex->cached_view->min_lod == min_lod &&
95 tex->cached_view->max_lod == max_lod) {
96 svga_sampler_view_reference(&sv, tex->cached_view);
128 sv->handle = tex->handle;
143 sv->age = tex->age;
144 sv->handle = svga_texture_view_surface(svga, tex, flags, format,
153 sv->handle = tex->handle;
160 svga_sampler_view_reference(&tex->cached_view, sv);
172 struct svga_texture *tex = svga_texture(v->texture);
179 if (v->handle == tex->handle)
182 age = tex->age;
184 if(tex->b.b.target == PIPE_TEXTURE_CUBE)
191 if (v->age < tex->view_age[i])
193 tex->handle, 0, 0, 0, i, k,
195 u_minify(tex->b.b.width0, i),
196 u_minify(tex->b.b.height0, i),
197 u_minify(tex->b.b.depth0, i));
207 struct svga_texture *tex = svga_texture(v->texture);
209 if(v->handle != tex->handle) {