Mesa (master): mesa: disable unreachable meta mipmap gen code

Brian Paul brianp at kemper.freedesktop.org
Wed Feb 24 15:15:19 UTC 2010


Module: Mesa
Branch: master
Commit: 78f72d73ee37c1a269f010e492631503a7fc35b2
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=78f72d73ee37c1a269f010e492631503a7fc35b2

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Feb 24 08:13:55 2010 -0700

mesa: disable unreachable meta mipmap gen code

More work is needed to support 3D mipmap generation.  Disable unreachable
code until then.

See bug 26722.

---

 src/mesa/drivers/common/meta.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c
index 42ab7d4..8e229bb 100644
--- a/src/mesa/drivers/common/meta.c
+++ b/src/mesa/drivers/common/meta.c
@@ -2131,12 +2131,15 @@ _mesa_meta_check_generate_mipmap_fallback(GLcontext *ctx, GLenum target,
                                     GL_COLOR_ATTACHMENT0_EXT,
                                     target, texObj->Name, srcLevel);
    }
+#if 0
+   /* other work is needed to enable 3D mipmap generation */
    else if (target == GL_TEXTURE_3D) {
       GLint zoffset = 0;
       _mesa_FramebufferTexture3DEXT(GL_FRAMEBUFFER_EXT,
                                     GL_COLOR_ATTACHMENT0_EXT,
                                     target, texObj->Name, srcLevel, zoffset);
    }
+#endif
    else {
       /* 2D / cube */
       _mesa_FramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT,




More information about the mesa-commit mailing list