diff options
author | Marek Olšák <[email protected]> | 2012-09-13 00:48:58 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-09-30 18:57:57 +0200 |
commit | 3d9d4b1ce6e700d85920eca84ae58a4dcf7288c2 (patch) | |
tree | a30ee74d8c81b29ea6fc4697df61c72c6cc366f3 /src/gallium/drivers/softpipe/sp_context.h | |
parent | 5f3054dcc46c35f76449cf8520cbbd02d36a6f01 (diff) |
softpipe: implement blit
Tested-by: Michel Dänzer <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.h b/src/gallium/drivers/softpipe/sp_context.h index 44599dd4845..86efcd9d664 100644 --- a/src/gallium/drivers/softpipe/sp_context.h +++ b/src/gallium/drivers/softpipe/sp_context.h @@ -32,6 +32,7 @@ #define SP_CONTEXT_H #include "pipe/p_context.h" +#include "util/u_blitter.h" #include "draw/draw_vertex.h" @@ -170,6 +171,8 @@ struct softpipe_context { struct vbuf_render *vbuf_backend; struct draw_stage *vbuf; + struct blitter_context *blitter; + boolean dirty_render_cache; struct softpipe_tile_cache *cbuf_cache[PIPE_MAX_COLOR_BUFS]; |