Compare commits

...

2 Commits

Author SHA1 Message Date
Brian
3de20aead2 RC4 2007-04-25 10:01:30 -06:00
Brian
6d27194dff fix attribsMask (re-fixes depth peeling algorithm) 2007-04-25 09:58:15 -06:00
2 changed files with 11 additions and 4 deletions

View File

@@ -155,10 +155,10 @@ ultrix-gcc:
# Rules for making release tarballs
DIRECTORY = Mesa-6.5.3rc3
LIB_NAME = MesaLib-6.5.3rc3
DEMO_NAME = MesaDemos-6.5.3rc3
GLUT_NAME = MesaGLUT-6.5.3rc3
DIRECTORY = Mesa-6.5.3rc4
LIB_NAME = MesaLib-6.5.3rc4
DEMO_NAME = MesaDemos-6.5.3rc4
GLUT_NAME = MesaGLUT-6.5.3rc4
MAIN_FILES = \
$(DIRECTORY)/Makefile* \

View File

@@ -536,6 +536,13 @@ _swrast_update_fragment_attribs(GLcontext *ctx)
}
}
/* 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;