intel: Fix segfault on INTEL_DEBUG=fbo with unsupported framebuffers.

This commit is contained in:
Eric Anholt 2010-09-24 16:22:08 -07:00
parent 8619495790
commit 934fde4f5a
1 changed files with 2 additions and 3 deletions

View File

@ -602,10 +602,9 @@ intel_finish_render_texture(GLcontext * ctx,
struct gl_texture_image *image =
tex_obj->Image[att->CubeMapFace][att->TextureLevel];
struct intel_texture_image *intel_image = intel_texture_image(image);
struct intel_renderbuffer *irb = intel_renderbuffer(att->Renderbuffer);
DBG("Finish render texture tid %lx tex=%u refcount=%d\n",
_glthread_GetID(), att->Texture->Name, irb->Base.RefCount);
DBG("Finish render texture tid %lx tex=%u\n",
_glthread_GetID(), att->Texture->Name);
/* Flag that this image may now be validated into the object's miptree. */
intel_image->used_as_render_target = GL_FALSE;