summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/fbobject.c
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2016-01-23 09:27:22 -0500
committerIlia Mirkin <imirkin@alum.mit.edu>2016-02-02 17:08:46 -0500
commit095da3b550be9f57a559ee3e549b15f3db4cf567 (patch)
treec5e009b181430941fe2b8ad91589293ef4b0444b /src/mesa/main/fbobject.c
parentbeac7b1b8b0a74bbf0ef76e681a31c98e9250e55 (diff)
downloadexternal_mesa3d-095da3b550be9f57a559ee3e549b15f3db4cf567.zip
external_mesa3d-095da3b550be9f57a559ee3e549b15f3db4cf567.tar.gz
external_mesa3d-095da3b550be9f57a559ee3e549b15f3db4cf567.tar.bz2
mesa: invalidate framebuffer when changing parameters
This fixes dEQP-GLES31.functional.fbo.completeness.no_attachments When the width or height are 0, the framebuffer is incomplete. We may also not have been passing the new state down to the driver when the widths/heights/etc changed. Make sure to dirty the state so that the framebuffer state is revalidated at draw time. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Marek Olšák <marek.olsak@amd.com> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r--src/mesa/main/fbobject.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c
index 3be216d..2d4acb3 100644
--- a/src/mesa/main/fbobject.c
+++ b/src/mesa/main/fbobject.c
@@ -1414,6 +1414,9 @@ framebuffer_parameteri(struct gl_context *ctx, struct gl_framebuffer *fb,
_mesa_error(ctx, GL_INVALID_ENUM,
"%s(pname=0x%x)", func, pname);
}
+
+ invalidate_framebuffer(fb);
+ ctx->NewState |= _NEW_BUFFERS;
}
void GLAPIENTRY