Lines Matching defs:templat
174 struct pipe_resource templat;
200 memset(&templat, 0, sizeof(templat));
201 templat.target = PIPE_TEXTURE_2D;
202 templat.format = formats[i];
203 templat.width0 = WIDTH;
204 templat.height0 = HEIGHT;
205 templat.depth0 = 1;
206 templat.last_level = 0;
207 templat.bind = (PIPE_BIND_RENDER_TARGET |
210 tex = screen->resource_create(screen, &templat);
216 surf_tmpl.format = templat.format;