diff options
author | Daniel Borca <[email protected]> | 2003-12-15 10:38:12 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2003-12-15 10:38:12 +0000 |
commit | f80220d05015c851879f4b347021f98c1690f93b (patch) | |
tree | e081cc5069853ce2ace3c9cec8863a0888ccffcb /src/mesa/drivers/glide/fxdrv.h | |
parent | 7aa77b679d0d273b941029bb2c912f87f94d055b (diff) |
EXT_secondary_color and EXT_separate_specular via multipass
Diffstat (limited to 'src/mesa/drivers/glide/fxdrv.h')
-rw-r--r-- | src/mesa/drivers/glide/fxdrv.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/drivers/glide/fxdrv.h b/src/mesa/drivers/glide/fxdrv.h index b4b44de6bbb..27a721ae60f 100644 --- a/src/mesa/drivers/glide/fxdrv.h +++ b/src/mesa/drivers/glide/fxdrv.h @@ -103,7 +103,8 @@ #define SETUP_XYZW 0x10 #define SETUP_PTEX 0x20 #define SETUP_PSIZ 0x40 -#define MAX_SETUP 0x80 +#define SETUP_SPEC 0x80 +#define MAX_SETUP 0x100 #define FX_NUM_TMU 2 @@ -469,7 +470,6 @@ struct tfxMesaContext GLuint stw_hint_state; /* for grHints */ GrVertex *verts; GLboolean snapVertices; /* needed for older Voodoo hardware */ - struct gl_client_array UbyteColor; /* Rasterization: */ @@ -691,6 +691,9 @@ extern void fxCheckIsInHardware(GLcontext *ctx); void fxSetupCull (GLcontext * ctx); void fxSetupScissor (GLcontext * ctx); void fxSetupColorMask (GLcontext * ctx); +void fxSetupBlend (GLcontext *ctx); +void fxSetupDepthTest (GLcontext *ctx); +void fxSetupTexture (GLcontext *ctx); /* Flags for software fallback cases */ #define FX_FALLBACK_TEXTURE_1D_3D 0x0001 |