Home | History | Annotate | Download | only in graw

Lines Matching defs:templat

114    struct pipe_resource templat;
117 templat.target = PIPE_BUFFER;
118 templat.format = PIPE_FORMAT_R8_UNORM;
119 templat.width0 = sizeof(constants1);
120 templat.height0 = 1;
121 templat.depth0 = 1;
122 templat.array_size = 1;
123 templat.last_level = 0;
124 templat.nr_samples = 1;
125 templat.bind = PIPE_BIND_CONSTANT_BUFFER;
128 &templat);
133 &templat);
293 struct pipe_resource templat;
339 templat.target = PIPE_TEXTURE_2D;
340 templat.format = PIPE_FORMAT_B8G8R8A8_UNORM;
341 templat.width0 = SIZE;
342 templat.height0 = SIZE;
343 templat.depth0 = 1;
344 templat.array_size = 1;
345 templat.last_level = 0;
346 templat.nr_samples = 1;
347 templat.bind = PIPE_BIND_SAMPLER_VIEW;
351 &templat);
426 struct pipe_resource templat;
452 templat.target = PIPE_TEXTURE_2D;
453 templat.format = formats[i];
454 templat.width0 = WIDTH;
455 templat.height0 = HEIGHT;
456 templat.depth0 = 1;
457 templat.array_size = 1;
458 templat.last_level = 0;
459 templat.nr_samples = 1;
460 templat.bind = (PIPE_BIND_RENDER_TARGET |
464 &templat);
468 surf_tmpl.format = templat.format;