Home | History | Annotate | Download | only in graw

Lines Matching refs:temp

226    struct pipe_resource temp, *tex;
229 temp.target = PIPE_TEXTURE_2D;
230 temp.format = PIPE_FORMAT_B8G8R8A8_UNORM;
231 temp.width0 = width;
232 temp.height0 = height;
233 temp.depth0 = 1;
234 temp.last_level = 0;
235 temp.array_size = 1;
236 temp.nr_samples = 1;
237 temp.bind = PIPE_BIND_SAMPLER_VIEW;
239 tex = info->screen->resource_create(info->screen, &temp);