Lines Matching refs:tex_temp
178 struct pipe_resource tex_temp, *tex; in vlVaAssociateSubpicture() local
208 memset(&tex_temp, 0, sizeof(tex_temp)); in vlVaAssociateSubpicture()
209 tex_temp.target = PIPE_TEXTURE_2D; in vlVaAssociateSubpicture()
210 tex_temp.format = PIPE_FORMAT_B8G8R8A8_UNORM; in vlVaAssociateSubpicture()
211 tex_temp.last_level = 0; in vlVaAssociateSubpicture()
212 tex_temp.width0 = src_width; in vlVaAssociateSubpicture()
213 tex_temp.height0 = src_height; in vlVaAssociateSubpicture()
214 tex_temp.depth0 = 1; in vlVaAssociateSubpicture()
215 tex_temp.array_size = 1; in vlVaAssociateSubpicture()
216 tex_temp.usage = PIPE_USAGE_DYNAMIC; in vlVaAssociateSubpicture()
217 tex_temp.bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET; in vlVaAssociateSubpicture()
218 tex_temp.flags = 0; in vlVaAssociateSubpicture()
220 drv->pipe->screen, tex_temp.format, tex_temp.target, in vlVaAssociateSubpicture()
221 tex_temp.nr_samples, tex_temp.nr_storage_samples, tex_temp.bind)) { in vlVaAssociateSubpicture()
226 tex = drv->pipe->screen->resource_create(drv->pipe->screen, &tex_temp); in vlVaAssociateSubpicture()