Lines Matching refs:temp
228 struct pipe_resource temp, *tex;
231 memset(&temp, 0, sizeof(temp));
232 temp.target = PIPE_TEXTURE_2D;
233 temp.format = format;
234 temp.width0 = width;
235 temp.height0 = height;
236 temp.depth0 = 1;
237 temp.last_level = 0;
238 temp.array_size = 1;
239 temp.bind = PIPE_BIND_SAMPLER_VIEW;
241 tex = info->screen->resource_create(info->screen, &temp);