Lines Matching refs:templat
156 const struct pipe_resource *templat, in softpipe_resource_create_front() argument
163 assert(templat->format != PIPE_FORMAT_NONE); in softpipe_resource_create_front()
165 spr->base = *templat; in softpipe_resource_create_front()
169 spr->pot = (util_is_power_of_two(templat->width0) && in softpipe_resource_create_front()
170 util_is_power_of_two(templat->height0) && in softpipe_resource_create_front()
171 util_is_power_of_two(templat->depth0)); in softpipe_resource_create_front()
193 const struct pipe_resource *templat) in softpipe_resource_create() argument
195 return softpipe_resource_create_front(screen, templat, NULL); in softpipe_resource_create()
221 const struct pipe_resource *templat, in softpipe_resource_from_handle() argument
230 spr->base = *templat; in softpipe_resource_from_handle()
234 spr->pot = (util_is_power_of_two(templat->width0) && in softpipe_resource_from_handle()
235 util_is_power_of_two(templat->height0) && in softpipe_resource_from_handle()
236 util_is_power_of_two(templat->depth0)); in softpipe_resource_from_handle()
239 templat, in softpipe_resource_from_handle()