Lines Matching defs:templ
351 struct pipe_resource templ;
370 memset(&templ, 0, sizeof(templ));
371 templ.target = screen->target;
372 templ.width0 = width;
373 templ.height0 = height;
374 templ.depth0 = 1;
375 templ.array_size = 1;
376 templ.last_level = 0;
395 templ.format = format;
396 templ.bind = bind;
397 templ.nr_samples = 0;
398 templ.nr_storage_samples = 0;
404 screen->base.screen->resource_create_front(screen->base.screen, &templ, (const void *)drawable);
407 screen->base.screen->resource_create(screen->base.screen, &templ);
410 templ.bind = templ.bind &
412 templ.nr_samples = drawable->stvis.samples;
413 templ.nr_storage_samples = drawable->stvis.samples;
415 screen->base.screen->resource_create(screen->base.screen, &templ);