[Mesa-stable] [PATCH] nouveau: there may not have been a texture if the fbo was incomplete
Ilia Mirkin
imirkin at alum.mit.edu
Mon Mar 17 07:39:16 PDT 2014
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
Cc: "10.0 10.1" <mesa-stable at lists.freedesktop.org>
---
src/mesa/drivers/dri/nouveau/nouveau_fbo.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_fbo.c b/src/mesa/drivers/dri/nouveau/nouveau_fbo.c
index ae50fe0..6c479f5 100644
--- a/src/mesa/drivers/dri/nouveau/nouveau_fbo.c
+++ b/src/mesa/drivers/dri/nouveau/nouveau_fbo.c
@@ -265,7 +265,8 @@ static void
nouveau_finish_render_texture(struct gl_context *ctx,
struct gl_renderbuffer *rb)
{
- texture_dirty(rb->TexImage->TexObject);
+ if (rb && rb->TexImage)
+ texture_dirty(rb->TexImage->TexObject);
}
static int
--
1.8.3.2
More information about the mesa-stable
mailing list