diff options
author | Brian Paul <[email protected]> | 2010-12-03 08:30:41 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-12-03 08:32:29 -0700 |
commit | 6d13ec7dc082aea9a8ce04dd8e045e77e5921d8a (patch) | |
tree | bb6021bb0c7697a720d057ee3d7561ed7ed84f2d /src/mesa/main/fbobject.c | |
parent | 20cf1851d82d6135b92c20323266156eb6ad5ffe (diff) |
mesa: return GL_FRAMEBUFFER_DEFAULT as FBO attachment type
If querying the default/window-system FBO's attachment type, return
GL_FRAMEBUFFER_DEFAULT (per the GL_ARB_framebuffer_object spec).
See http://bugs.freedesktop.org/show_bug.cgi?id=31947
NOTE: This is a candidate for the 7.9 branch.
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r-- | src/mesa/main/fbobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 560a2f68bea..47ac6306cfe 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -2014,7 +2014,7 @@ _mesa_GetFramebufferAttachmentParameterivEXT(GLenum target, GLenum attachment, switch (pname) { case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT: - *params = att->Type; + *params = buffer->Name == 0 ? GL_FRAMEBUFFER_DEFAULT : att->Type; return; case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT: if (att->Type == GL_RENDERBUFFER_EXT) { |