diff options
author | Brian Paul <[email protected]> | 2009-08-10 13:43:50 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-10 13:55:31 -0600 |
commit | e9d9dab0cd8614898ecc2aceb49d8faf354cdbdf (patch) | |
tree | c0ac344a166de1e69b3f4635e17cf2cfb48c0096 /src | |
parent | b4c95697150b8eb0bb60bb996f04be323bb56332 (diff) |
mesa: added GLcontext::Meta field for meta rendering state
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/mtypes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 48f00b4b0ba..e447e4ce23b 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -83,6 +83,7 @@ /*@{*/ struct _mesa_HashTable; struct gl_attrib_node; +struct gl_meta_state; struct gl_pixelstore_attrib; struct gl_program_cache; struct gl_texture_format; @@ -2982,6 +2983,8 @@ struct __GLcontextRec struct gl_buffer_object *CopyWriteBuffer; /**< GL_ARB_copy_buffer */ /*@}*/ + struct gl_meta_state *Meta; /**< for "meta" operations */ + #if FEATURE_EXT_framebuffer_object struct gl_renderbuffer *CurrentRenderbuffer; #endif |