Home | History | Annotate | Download | only in graw

Lines Matching refs:templat

82    struct pipe_resource templat;
85 memset(&templat, 0, sizeof(templat));
86 templat.target = PIPE_BUFFER;
87 templat.format = PIPE_FORMAT_R8_UNORM;
88 templat.width0 = sizeof(constants);
89 templat.height0 = 1;
90 templat.depth0 = 1;
91 templat.array_size = 1;
92 templat.last_level = 0;
93 templat.nr_samples = 1;
94 templat.bind = PIPE_BIND_CONSTANT_BUFFER;
97 &templat);
239 struct pipe_resource templat;
285 memset(&templat, 0, sizeof(templat));
286 templat.target = PIPE_TEXTURE_2D;
287 templat.format = PIPE_FORMAT_B8G8R8A8_UNORM;
288 templat.width0 = SIZE;
289 templat.height0 = SIZE;
290 templat.depth0 = 1;
291 templat.array_size = 1;
292 templat.last_level = 0;
293 templat.nr_samples = 1;
294 templat.bind = PIPE_BIND_SAMPLER_VIEW;
298 &templat);
369 struct pipe_resource templat;
395 memset(&templat, 0, sizeof(templat));
396 templat.target = PIPE_TEXTURE_2D;
397 templat.format = formats[i];
398 templat.width0 = WIDTH;
399 templat.height0 = HEIGHT;
400 templat.depth0 = 1;
401 templat.array_size = 1;
402 templat.last_level = 0;
403 templat.nr_samples = 1;
404 templat.bind = (PIPE_BIND_RENDER_TARGET |
408 &templat);
412 surf_tmpl.format = templat.format;