Lines Matching refs:psurf
679 struct pipe_surface *psurf = cso_fb->zsbuf; in iris_clear() local
681 box.depth = psurf->u.tex.last_layer - psurf->u.tex.first_layer + 1; in iris_clear()
682 box.z = psurf->u.tex.first_layer, in iris_clear()
683 clear_depth_stencil(ice, psurf->texture, psurf->u.tex.level, &box, true, in iris_clear()
692 struct pipe_surface *psurf = cso_fb->cbufs[i]; in iris_clear() local
693 struct iris_surface *isurf = (void *) psurf; in iris_clear()
694 box.depth = psurf->u.tex.last_layer - psurf->u.tex.first_layer + 1, in iris_clear()
695 box.z = psurf->u.tex.first_layer, in iris_clear()
697 clear_color(ice, psurf->texture, psurf->u.tex.level, &box, in iris_clear()
699 convert_clear_color(psurf->format, p_color)); in iris_clear()
780 struct pipe_surface *psurf, in iris_clear_render_target() argument
787 struct iris_surface *isurf = (void *) psurf; in iris_clear_render_target()
791 .z = psurf->u.tex.first_layer, in iris_clear_render_target()
794 .depth = psurf->u.tex.last_layer - psurf->u.tex.first_layer + 1 in iris_clear_render_target()
797 clear_color(ice, psurf->texture, psurf->u.tex.level, &box, in iris_clear_render_target()
800 convert_clear_color(psurf->format, p_color)); in iris_clear_render_target()
810 struct pipe_surface *psurf, in iris_clear_depth_stencil() argument
822 .z = psurf->u.tex.first_layer, in iris_clear_depth_stencil()
825 .depth = psurf->u.tex.last_layer - psurf->u.tex.first_layer + 1 in iris_clear_depth_stencil()
828 assert(util_format_is_depth_or_stencil(psurf->texture->format)); in iris_clear_depth_stencil()
830 clear_depth_stencil(ice, psurf->texture, psurf->u.tex.level, &box, in iris_clear_depth_stencil()