Lines Matching defs:templ
491 struct pipe_resource templ;
577 memset(&templ, 0, sizeof(templ));
578 templ.target = screen->target;
579 templ.width0 = width;
580 templ.height0 = height;
581 templ.depth0 = 1;
582 templ.array_size = 1;
583 templ.last_level = 0;
616 templ.format = format;
617 templ.bind = bind;
618 templ.nr_samples = 0;
619 templ.nr_storage_samples = 0;
629 screen->base.screen->resource_create_drawable(screen->base.screen, &templ, data);
639 screen->base.screen->resource_create(screen->base.screen, &templ);
643 templ.bind = templ.bind &
645 templ.nr_samples = drawable->stvis.samples;
646 templ.nr_storage_samples = drawable->stvis.samples;
648 screen->base.screen->resource_create(screen->base.screen, &templ);