call _mesa_update_framebuffer_visual() in _mesa_FramebufferRenderbufferEXT() to fix...
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 7 Mar 2006 01:43:52 +0000 (01:43 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 7 Mar 2006 01:43:52 +0000 (01:43 +0000)
src/mesa/main/fbobject.c

index 6aeca7b..749115a 100644 (file)
@@ -2,7 +2,7 @@
  * Mesa 3-D graphics library
  * Version:  6.5
  *
- * Copyright (C) 1999-2005  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2006  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
@@ -1373,6 +1373,11 @@ _mesa_FramebufferRenderbufferEXT(GLenum target, GLenum attachment,
 
    assert(ctx->Driver.FramebufferRenderbuffer);
    ctx->Driver.FramebufferRenderbuffer(ctx, fb, attachment, rb);
+
+   /* Some subsequent GL commands may depend on the framebuffer's visual
+    * after the binding is updated.  Update visual info now.
+    */
+   _mesa_update_framebuffer_visual(fb);
 }