Home | History | Annotate | Download | only in graw

Lines Matching defs:templat

170    struct pipe_resource templat;
196 templat.target = PIPE_TEXTURE_2D;
197 templat.format = formats[i];
198 templat.width0 = WIDTH;
199 templat.height0 = HEIGHT;
200 templat.depth0 = 1;
201 templat.last_level = 0;
202 templat.nr_samples = 1;
203 templat.bind = (PIPE_BIND_RENDER_TARGET |
206 tex = screen->resource_create(screen, &templat);
212 surf_tmpl.format = templat.format;