Lines Matching refs:tpl
600 struct pipe_resource tpl = {}; in create_tmp_resource() local
601 tpl.width0 = info->dst.box.width; in create_tmp_resource()
602 tpl.height0 = info->dst.box.height; in create_tmp_resource()
603 tpl.depth0 = info->dst.box.depth; in create_tmp_resource()
604 tpl.array_size = 1; in create_tmp_resource()
605 tpl.format = PIPE_FORMAT_R8_UINT; in create_tmp_resource()
606 tpl.target = info->dst.resource->target; in create_tmp_resource()
607 tpl.nr_samples = info->dst.resource->nr_samples; in create_tmp_resource()
608 tpl.nr_storage_samples = info->dst.resource->nr_storage_samples; in create_tmp_resource()
609 tpl.usage = PIPE_USAGE_STREAM; in create_tmp_resource()
610 tpl.bind = PIPE_BIND_RENDER_TARGET | PIPE_BIND_SAMPLER_VIEW; in create_tmp_resource()
611 return screen->resource_create(screen, &tpl); in create_tmp_resource()