diff options
author | Marek Olšák <[email protected]> | 2012-09-13 00:36:06 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-09-30 18:57:56 +0200 |
commit | ced065a0797d9504950b7763cd90244ca478a723 (patch) | |
tree | d3fc20a3c1e2dd2dcd791655f4f01fa66dfc29f4 /src/gallium/drivers/nv30/nv30_context.h | |
parent | db85443922e93191b9056799ed649ab6f7d8f758 (diff) |
nv30: implement blit
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nv30/nv30_context.h')
-rw-r--r-- | src/gallium/drivers/nv30/nv30_context.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv30/nv30_context.h b/src/gallium/drivers/nv30/nv30_context.h index 0a6f97f7fb1..c90dd3c1061 100644 --- a/src/gallium/drivers/nv30/nv30_context.h +++ b/src/gallium/drivers/nv30/nv30_context.h @@ -2,6 +2,7 @@ #define __NV30_CONTEXT_H__ #include "pipe/p_format.h" +#include "util/u_blitter.h" #include "nv30_screen.h" #include "nv30_state.h" @@ -42,6 +43,7 @@ struct nv30_context { struct nouveau_context base; struct nv30_screen *screen; + struct blitter_context *blitter; struct nouveau_bufctx *bufctx; @@ -124,6 +126,9 @@ struct nv30_context { enum { HW, } render_mode; + + struct pipe_query *render_cond_query; + unsigned render_cond_mode; }; static INLINE struct nv30_context * |