diff options
author | Marek Olšák <[email protected]> | 2012-09-13 00:34:56 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-09-30 18:57:56 +0200 |
commit | ff2d192ec50e6a8cbaa8f14bca989fe5b61a3c46 (patch) | |
tree | a5f32b49c872d2ce0deb7e67348d7de83cacbdbe /src/gallium/drivers/llvmpipe/lp_context.h | |
parent | 6d2f59ce5494a9435b6b3d3faa1d94ba6caad100 (diff) |
llvmpipe: implement blit
Tested-by: Michel Dänzer <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_context.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.h b/src/gallium/drivers/llvmpipe/lp_context.h index b7b7ede7eaf..fcdc0f82b12 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.h +++ b/src/gallium/drivers/llvmpipe/lp_context.h @@ -34,6 +34,7 @@ #include "pipe/p_context.h" #include "draw/draw_vertex.h" +#include "util/u_blitter.h" #include "lp_tex_sample.h" #include "lp_jit.h" @@ -122,6 +123,8 @@ struct llvmpipe_context { /** The primitive drawing context */ struct draw_context *draw; + struct blitter_context *blitter; + unsigned tex_timestamp; boolean no_rast; |