Lines Matching refs:templat
169 struct pipe_resource templat; in init() local
195 memset(&templat, 0, sizeof(templat)); in init()
196 templat.target = PIPE_TEXTURE_2D; in init()
197 templat.format = formats[i]; in init()
198 templat.width0 = WIDTH; in init()
199 templat.height0 = HEIGHT; in init()
200 templat.depth0 = 1; in init()
201 templat.last_level = 0; in init()
202 templat.nr_samples = 1; in init()
203 templat.bind = (PIPE_BIND_RENDER_TARGET | in init()
206 tex = screen->resource_create(screen, &templat); in init()
212 surf_tmpl.format = templat.format; in init()