diff options
author | Keith Whitwell <[email protected]> | 2001-01-08 04:06:56 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-01-08 04:06:56 +0000 |
commit | 44d8de433e684cb4c2bc4dfc5cc6919af1f3cc55 (patch) | |
tree | 5aca3833a642fecf26946668f189a623d0f099ed /src/mesa/drivers/glide/fxdd.c | |
parent | e9bf776711b22ce336cd462adf534ad3e2d61eec (diff) |
Bring the FX driver into line with core mesa changes.
Diffstat (limited to 'src/mesa/drivers/glide/fxdd.c')
-rw-r--r-- | src/mesa/drivers/glide/fxdd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/glide/fxdd.c b/src/mesa/drivers/glide/fxdd.c index b36cbee47c6..08285f67e8c 100644 --- a/src/mesa/drivers/glide/fxdd.c +++ b/src/mesa/drivers/glide/fxdd.c @@ -1026,6 +1026,10 @@ static void fxDDUpdateDDPointers(GLcontext *ctx, GLuint new_state) #endif } +static void fxDDRenderPrimitive( GLcontext *ctx, GLenum mode ) +{ + (void) ctx; (void) mode; +} void fxSetupDDPointers(GLcontext *ctx) @@ -1061,6 +1065,7 @@ void fxSetupDDPointers(GLcontext *ctx) ctx->Driver.RenderStart=fxSetupFXUnits; ctx->Driver.RenderFinish=_swrast_flush; ctx->Driver.ResetLineStipple=_swrast_ResetLineStipple; + ctx->Driver.RenderPrimitive=fxDDRenderPrimitive; ctx->Driver.TexImage2D = fxDDTexImage2D; ctx->Driver.TexSubImage2D = fxDDTexSubImage2D; |