mesa: Branch 'master'

Brian Paul brianp at kemper.freedesktop.org
Wed Apr 25 15:58:16 UTC 2007


 src/mesa/swrast/s_context.c |    7 +++++++
 1 files changed, 7 insertions(+)

New commits:
diff-tree 6d27194dffa52e076aba49edb222a70fcc77628b (from c233aa27684cd0c6c44200c3afcf4a9d5863a947)
Author: Brian <brian at yutani.localnet.net>
Date:   Wed Apr 25 09:58:15 2007 -0600

    fix attribsMask (re-fixes depth peeling algorithm)

diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c
index c55de89..2f25edb 100644
--- a/src/mesa/swrast/s_context.c
+++ b/src/mesa/swrast/s_context.c
@@ -536,6 +536,13 @@ _swrast_update_fragment_attribs(GLcontex
       }
    }
 
+   /* don't want to interpolate these generic attribs just yet */
+   /* XXX temporary */
+   attribsMask &= ~(FRAG_BIT_WPOS |
+                    FRAG_BIT_COL0 |
+                    FRAG_BIT_COL1 |
+                    FRAG_BIT_FOGC);
+
    /* Update _ActiveAttribs[] list */
    {
       GLuint i, num = 0;



More information about the mesa-commit mailing list