diff options
author | Marek Olšák <[email protected]> | 2010-06-04 02:59:37 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-06-04 03:04:16 +0200 |
commit | 8819421a3b579111e39fbf0ef7fe0a7cb9d7ac6e (patch) | |
tree | 034ae2ea6580d606d1ebc8c39dbbce42d8ec6fbe /src | |
parent | 7d0418d3dc5b44ce8171cc74359306ce22234b17 (diff) |
r600g: implement clear_{render_target, depth_stencil}, resource_copy_region
resource_copy_region uses a software fallback because it relies on texture
samplers which haven't been implemented yet.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r600/r600_blit.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index 974ceef15f5..80c3069cf5b 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -28,6 +28,7 @@ #include <util/u_blitter.h> #include <util/u_inlines.h> #include <util/u_memory.h> +#include "util/u_surface.h" #include "r600_screen.h" #include "r600_context.h" @@ -68,6 +69,13 @@ static void r600_clear_render_target(struct pipe_context *pipe, unsigned dstx, unsigned dsty, unsigned width, unsigned height) { + struct r600_context *rctx = r600_context(pipe); + + r600_blitter_save_states(rctx); + util_blitter_save_framebuffer(rctx->blitter, &rctx->fb_state); + + util_blitter_clear_render_target(rctx->blitter, dst, rgba, + dstx, dsty, width, height); } static void r600_clear_depth_stencil(struct pipe_context *pipe, @@ -78,6 +86,13 @@ static void r600_clear_depth_stencil(struct pipe_context *pipe, unsigned dstx, unsigned dsty, unsigned width, unsigned height) { + struct r600_context *rctx = r600_context(pipe); + + r600_blitter_save_states(rctx); + util_blitter_save_framebuffer(rctx->blitter, &rctx->fb_state); + + util_blitter_clear_depth_stencil(rctx->blitter, dst, clear_flags, depth, stencil, + dstx, dsty, width, height); } static void r600_resource_copy_region(struct pipe_context *pipe, @@ -89,6 +104,8 @@ static void r600_resource_copy_region(struct pipe_context *pipe, unsigned srcx, unsigned srcy, unsigned srcz, unsigned width, unsigned height) { + util_resource_copy_region(pipe, dst, subdst, dstx, dsty, dstz, + src, subsrc, srcx, srcy, srcz, width, height); } void r600_init_blit_functions(struct r600_context *rctx) |