Lines Matching refs:dstsurf
1279 struct pipe_surface *dstsurf, in util_blitter_clear_render_target() argument
1288 assert(dstsurf->texture); in util_blitter_clear_render_target()
1289 if (!dstsurf->texture) in util_blitter_clear_render_target()
1305 fb_state.width = dstsurf->width; in util_blitter_clear_render_target()
1306 fb_state.height = dstsurf->height; in util_blitter_clear_render_target()
1308 fb_state.cbufs[0] = dstsurf; in util_blitter_clear_render_target()
1314 blitter_set_dst_dimensions(ctx, dstsurf->width, dstsurf->height); in util_blitter_clear_render_target()
1326 struct pipe_surface *dstsurf, in util_blitter_clear_depth_stencil() argument
1338 assert(dstsurf->texture); in util_blitter_clear_depth_stencil()
1339 if (!dstsurf->texture) in util_blitter_clear_depth_stencil()
1371 fb_state.width = dstsurf->width; in util_blitter_clear_depth_stencil()
1372 fb_state.height = dstsurf->height; in util_blitter_clear_depth_stencil()
1375 fb_state.zsbuf = dstsurf; in util_blitter_clear_depth_stencil()
1380 blitter_set_dst_dimensions(ctx, dstsurf->width, dstsurf->height); in util_blitter_clear_depth_stencil()
1516 struct pipe_surface *srcsurf, *dstsurf, surf_tmpl; in util_blitter_custom_resolve_color() local
1536 dstsurf = pipe->create_surface(pipe, dst, &surf_tmpl); in util_blitter_custom_resolve_color()
1549 fb_state.cbufs[1] = dstsurf; in util_blitter_custom_resolve_color()
1563 pipe_surface_reference(&dstsurf, NULL); in util_blitter_custom_resolve_color()
1567 struct pipe_surface *dstsurf, in util_blitter_custom_color() argument
1574 assert(dstsurf->texture); in util_blitter_custom_color()
1575 if (!dstsurf->texture) in util_blitter_custom_color()
1589 pipe->set_sample_mask(pipe, (1ull << MAX2(1, dstsurf->texture->nr_samples)) - 1); in util_blitter_custom_color()
1592 fb_state.width = dstsurf->width; in util_blitter_custom_color()
1593 fb_state.height = dstsurf->height; in util_blitter_custom_color()
1595 fb_state.cbufs[0] = dstsurf; in util_blitter_custom_color()
1601 blitter_set_dst_dimensions(ctx, dstsurf->width, dstsurf->height); in util_blitter_custom_color()
1602 blitter->draw_rectangle(blitter, 0, 0, dstsurf->width, dstsurf->height, in util_blitter_custom_color()