Home | History | Annotate | Download | only in graw

Lines Matching defs:templat

167    struct pipe_resource templat;
213 templat.target = PIPE_TEXTURE_2D;
214 templat.format = PIPE_FORMAT_B8G8R8A8_UNORM;
215 templat.width0 = SIZE;
216 templat.height0 = SIZE;
217 templat.depth0 = 1;
218 templat.last_level = 0;
219 templat.nr_samples = 1;
220 templat.bind = PIPE_BIND_SAMPLER_VIEW;
224 &templat);
299 struct pipe_resource templat;
325 templat.target = PIPE_TEXTURE_2D;
326 templat.format = formats[i];
327 templat.width0 = WIDTH;
328 templat.height0 = HEIGHT;
329 templat.depth0 = 1;
330 templat.array_size = 1;
331 templat.last_level = 0;
332 templat.nr_samples = 1;
333 templat.bind = (PIPE_BIND_RENDER_TARGET |
337 &templat);
341 surf_tmpl.format = templat.format;