diff options
author | Brian Paul <[email protected]> | 2010-10-23 09:37:06 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-10-23 10:19:30 -0600 |
commit | f681ea4741c8136b2c169ff17c9d5b49b1d791ba (patch) | |
tree | 2ef2c4daa799cfe0b5f503883014cd85c4f3b3cb /src/mesa | |
parent | 9ee07a0a27f515c11ae6d3061565863da757a8ed (diff) |
mesa: added new gl_framebuffer::_IntegerColor field
Diffstat (limited to 'src/mesa')
-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 32f1470ed0e..1e65d1636af 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2462,6 +2462,9 @@ struct gl_framebuffer /** One of the GL_FRAMEBUFFER_(IN)COMPLETE_* tokens */ GLenum _Status; + /** Integer color values */ + GLboolean _IntegerColor; + /** Array of all renderbuffer attachments, indexed by BUFFER_* tokens. */ struct gl_renderbuffer_attachment Attachment[BUFFER_COUNT]; |