Lines Matching defs:templat
171 struct pipe_resource templat;
217 memset(&templat, 0, sizeof(templat));
218 templat.target = PIPE_TEXTURE_2D;
219 templat.format = PIPE_FORMAT_B8G8R8A8_UNORM;
220 templat.width0 = SIZE;
221 templat.height0 = SIZE;
222 templat.depth0 = 1;
223 templat.last_level = 0;
224 templat.bind = PIPE_BIND_SAMPLER_VIEW;
228 &templat);
299 struct pipe_resource templat;
325 memset(&templat, 0, sizeof(templat));
326 templat.target = PIPE_TEXTURE_2D;
327 templat.format = formats[i];
328 templat.width0 = WIDTH;
329 templat.height0 = HEIGHT;
330 templat.depth0 = 1;
331 templat.array_size = 1;
332 templat.last_level = 0;
333 templat.bind = (PIPE_BIND_RENDER_TARGET |
337 &templat);
341 surf_tmpl.format = templat.format;