diff options
author | Marek Olšák <[email protected]> | 2009-12-13 01:32:39 +0100 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-12-15 19:04:45 -0800 |
commit | 38a97148bf5df3c32087a5fdd799912d0275267d (patch) | |
tree | f58edff0a2b7ef7fc36ccaf3d92b7a508c9b989f /src/gallium/drivers/r300/r300_context.h | |
parent | 417ce06306962a9355cbb35cefcdea1951b0ce85 (diff) |
r300g: add acceleration of the clear, surface_copy, and surface_fill functions
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index 0be190392a5..6bd2766730f 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -25,6 +25,8 @@ #include "draw/draw_vertex.h" +#include "util/u_blitter.h" + #include "pipe/p_context.h" #include "pipe/p_inlines.h" @@ -248,6 +250,8 @@ struct r300_context { struct radeon_winsys* winsys; /* Draw module. Used mostly for SW TCL. */ struct draw_context* draw; + /* Accelerated blit support. */ + struct blitter_context* blitter; /* Vertex buffer for rendering. */ struct pipe_buffer* vbo; |