Lines Matching refs:templat
176 struct pipe_resource templat; in init() local
202 memset(&templat, 0, sizeof(templat)); in init()
203 templat.target = PIPE_TEXTURE_2D; in init()
204 templat.format = formats[i]; in init()
205 templat.width0 = WIDTH; in init()
206 templat.height0 = HEIGHT; in init()
207 templat.depth0 = 1; in init()
208 templat.array_size = 1; in init()
209 templat.last_level = 0; in init()
210 templat.nr_samples = 1; in init()
211 templat.bind = (PIPE_BIND_RENDER_TARGET | in init()
215 &templat); in init()
219 surf_tmpl.format = templat.format; in init()