Lines Matching defs:templat
255 struct pipe_resource templat;
301 memset(&templat, 0, sizeof(templat));
302 templat.target = PIPE_TEXTURE_2D;
303 templat.format = PIPE_FORMAT_B8G8R8A8_UNORM;
304 templat.width0 = SIZE;
305 templat.height0 = SIZE;
306 templat.depth0 = 1;
307 templat.array_size = 1;
308 templat.last_level = 0;
309 templat.bind = PIPE_BIND_SAMPLER_VIEW;
313 &templat);
384 struct pipe_resource templat;
410 memset(&templat, 0, sizeof(templat));
411 templat.target = PIPE_TEXTURE_2D;
412 templat.format = formats[i];
413 templat.width0 = WIDTH;
414 templat.height0 = HEIGHT;
415 templat.depth0 = 1;
416 templat.array_size = 1;
417 templat.last_level = 0;
418 templat.bind = (PIPE_BIND_RENDER_TARGET |
422 &templat);
426 surf_tmpl.format = templat.format;