summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-01-20 15:17:57 -0700
committerBrian Paul <brianp@vmware.com>2009-01-22 15:18:06 -0700
commit4fc16fb7e9b72c4535967804c031256637a97197 (patch)
tree2709238f2b18630c67d131fba6c8c7d5e06f7182 /src
parent777a2efc7768de659fbc2e9a7541c9cbb3fc1d8b (diff)
mesa: added NumSamples, MaxSamples for ARB_fbo
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/mtypes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 0cd88e7b3a..f1da638ae6 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -2270,6 +2270,7 @@ struct gl_renderbuffer
GLubyte IndexBits;
GLubyte DepthBits;
GLubyte StencilBits;
+ GLubyte NumSamples;
GLenum DataType; /**< Type of values passed to the Get/Put functions */
GLvoid *Data; /**< This may not be used by some kinds of RBs */
@@ -2514,6 +2515,8 @@ struct gl_constants
/* GL_ARB_vertex_shader */
GLuint MaxVertexTextureImageUnits;
GLuint MaxVarying; /**< Number of float[4] vectors */
+ /* GL_ARB_framebuffer_object */
+ GLuint MaxSamples;
};