diff options
author | Brian <[email protected]> | 2007-02-02 09:46:43 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-02-02 09:46:43 -0700 |
commit | 462d8f5fafcc5ac69ea89cac1222abadded642e2 (patch) | |
tree | 97c479af2f25eee54d2d7ce953985933c7e52230 /src/mesa/swrast/s_pointtemp.h | |
parent | 4e7fd7ad9604f6b9700a6011338c2bf1381b28da (diff) |
New span attrStart/attrStepX/attrStepY fields to replace fog, specular, etc. fields. More to come.
Diffstat (limited to 'src/mesa/swrast/s_pointtemp.h')
-rw-r--r-- | src/mesa/swrast/s_pointtemp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_pointtemp.h b/src/mesa/swrast/s_pointtemp.h index f68630af93a..f769f524a0a 100644 --- a/src/mesa/swrast/s_pointtemp.h +++ b/src/mesa/swrast/s_pointtemp.h @@ -107,8 +107,9 @@ NAME ( GLcontext *ctx, const SWvertex *vert ) */ span->interpMask = SPAN_FOG; span->arrayMask = SPAN_XY | SPAN_Z; - span->fog = vert->fog; - span->fogStep = 0.0; + span->attrStart[FRAG_ATTRIB_FOGC][0] = vert->fog; + span->attrStepX[FRAG_ATTRIB_FOGC][0] = 0.0; + span->attrStepY[FRAG_ATTRIB_FOGC][0] = 0.0; #if FLAGS & RGBA span->arrayMask |= SPAN_RGBA; #endif |