Home | History | Annotate | Download | only in graw

Lines Matching defs:templat

82    struct pipe_resource templat;
85 templat.target = PIPE_BUFFER;
86 templat.format = PIPE_FORMAT_R8_UNORM;
87 templat.width0 = sizeof(constants);
88 templat.height0 = 1;
89 templat.depth0 = 1;
90 templat.array_size = 1;
91 templat.last_level = 0;
92 templat.nr_samples = 1;
93 templat.bind = PIPE_BIND_CONSTANT_BUFFER;
96 &templat);
244 struct pipe_resource templat;
290 templat.target = PIPE_TEXTURE_2D;
291 templat.format = PIPE_FORMAT_B8G8R8A8_UNORM;
292 templat.width0 = SIZE;
293 templat.height0 = SIZE;
294 templat.depth0 = 1;
295 templat.array_size = 1;
296 templat.last_level = 0;
297 templat.nr_samples = 1;
298 templat.bind = PIPE_BIND_SAMPLER_VIEW;
302 &templat);
377 struct pipe_resource templat;
403 templat.target = PIPE_TEXTURE_2D;
404 templat.format = formats[i];
405 templat.width0 = WIDTH;
406 templat.height0 = HEIGHT;
407 templat.depth0 = 1;
408 templat.array_size = 1;
409 templat.last_level = 0;
410 templat.nr_samples = 1;
411 templat.bind = (PIPE_BIND_RENDER_TARGET |
415 &templat);
419 surf_tmpl.format = templat.format;