intel: Mark the FBO as incomplete if there's no intel_renderbuffer for it.
authorEric Anholt <eric@anholt.net>
Wed, 20 May 2009 21:05:03 +0000 (14:05 -0700)
committerBrian Paul <brianp@vmware.com>
Mon, 21 Sep 2009 16:02:38 +0000 (10:02 -0600)
This happens to rendering with textures with a border, which had resulted
in a segfault on dereferencing the irb.

(cherry-picked from commit 8bba183b9eeb162661a287bf2e118c6dd419dd24)

src/mesa/drivers/dri/intel/intel_fbo.c

index 30f58b1f44ad52276d5cb381b2ea4dbd4b9ea314..ed7c78e06c40cfa89c9679aa3f69674b03a3d8f0 100644 (file)
@@ -680,6 +680,11 @@ intel_validate_framebuffer(GLcontext *ctx, struct gl_framebuffer *fb)
       if (rb == NULL)
         continue;
 
+      if (irb == NULL) {
+        fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
+        continue;
+      }
+
       switch (irb->texformat->MesaFormat) {
       case MESA_FORMAT_ARGB8888:
       case MESA_FORMAT_RGB565: