Mesa (master): mesa: remove always-false conditional in check_compatible()

Brian Paul brianp at kemper.freedesktop.org
Tue Nov 2 16:06:52 UTC 2010


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

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Nov  2 09:40:55 2010 -0600

mesa: remove always-false conditional in check_compatible()

The two gl_config pointers can never be equal.

---

 src/mesa/main/context.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 4e9bf0f..b60875b 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -1292,9 +1292,6 @@ check_compatible(const struct gl_context *ctx, const struct gl_framebuffer *buff
    const struct gl_config *ctxvis = &ctx->Visual;
    const struct gl_config *bufvis = &buffer->Visual;
 
-   if (ctxvis == bufvis)
-      return GL_TRUE;
-
    if (buffer == _mesa_get_incomplete_framebuffer())
       return GL_TRUE;
 




More information about the mesa-commit mailing list