Module: Demos Branch: master Commit: 52cc5d6503563251e7c21eb1e3e8fd7656da346c URL: http://cgit.freedesktop.org/mesa/demos/commit/?id=52cc5d6503563251e7c21eb1e3e8fd7656da346c
Author: Brian Paul <[email protected]> Date: Mon Feb 27 08:16:13 2012 -0700 glxinfo: query/print GL_ARB_framebuffer_object limits --- src/xdemos/glxinfo.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/xdemos/glxinfo.c b/src/xdemos/glxinfo.c index efb9b20..38bd384 100644 --- a/src/xdemos/glxinfo.c +++ b/src/xdemos/glxinfo.c @@ -427,6 +427,11 @@ print_limits(const char *extensions) #if defined(GL_ARB_blend_func_extended) { 1, GL_MAX_DUAL_SOURCE_DRAW_BUFFERS, "GL_MAX_DUAL_SOURCE_DRAW_BUFFERS", "GL_ARB_blend_func_extended" }, #endif +#if defined (GL_ARB_framebuffer_object) + { 1, GL_MAX_RENDERBUFFER_SIZE, "GL_MAX_RENDERBUFFER_SIZE", "GL_ARB_framebuffer_object" }, + { 1, GL_MAX_COLOR_ATTACHMENTS, "GL_MAX_COLOR_ATTACHMENTS", "GL_ARB_framebuffer_object" }, + { 1, GL_MAX_SAMPLES, "GL_MAX_SAMPLES", "GL_ARB_framebuffer_object" }, +#endif { 0, (GLenum) 0, NULL, NULL } }; GLint i, max[2]; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
