diff options
author | Brian <[email protected]> | 2008-03-18 17:16:23 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-03-18 17:18:11 -0600 |
commit | 0df877a0ee68359d106ba84e3dd3b7c42ae20d5a (patch) | |
tree | 623dcee170bf85dd287c61160de13fb1a378bd8e /src/mesa/state_tracker/st_context.h | |
parent | ecb873b2b5754adbd47cee4856a549e48e48505f (diff) |
gallium: plug in and init GL_EXT_framebuffer_blit function/extension
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index 09bab7bfb1b..63150dbeaf6 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -40,6 +40,9 @@ struct draw_context; struct draw_stage; struct cso_cache; struct cso_blend; +struct gen_mipmap_state; +struct blit_state; + #define ST_NEW_MESA 0x1 /* Mesa state has changed */ #define ST_NEW_FRAGMENT_PROGRAM 0x2 @@ -147,6 +150,7 @@ struct st_context } bitmap; struct gen_mipmap_state *gen_mipmap; + struct blit_state *blit; struct cso_context *cso_context; }; |