summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/nouveau/nouveau_state.c
diff options
context:
space:
mode:
authorStephane Marchesin <marchesin@icps.u-strasbg.fr>2006-11-11 00:00:45 +0000
committerStephane Marchesin <marchesin@icps.u-strasbg.fr>2006-11-11 00:00:45 +0000
commitf82bc9110b3b06f3313e584e860d0e41d11965f0 (patch)
tree82b87beaeeadeb5f3ee02d8991ce14d7c67011b8 /src/mesa/drivers/dri/nouveau/nouveau_state.c
parent20802a7b695cdb580c479352bc3eab84d1481b2c (diff)
Some work on nv30 state, heavily based on jkolb's work
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nouveau_state.c')
-rw-r--r--src/mesa/drivers/dri/nouveau/nouveau_state.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_state.c b/src/mesa/drivers/dri/nouveau/nouveau_state.c
index 85b5eae49e..94c92aeb8a 100644
--- a/src/mesa/drivers/dri/nouveau/nouveau_state.c
+++ b/src/mesa/drivers/dri/nouveau/nouveau_state.c
@@ -54,20 +54,6 @@ static __inline__ GLuint nouveauPackColor(GLuint format,
}
}
-static void nouveauDDClearColor(GLcontext *ctx, const GLfloat color[4])
-{
- nouveauContextPtr nmesa = NOUVEAU_CONTEXT(ctx);
- GLubyte c[4];
-
- CLAMPED_FLOAT_TO_UBYTE(c[0], color[0]);
- CLAMPED_FLOAT_TO_UBYTE(c[1], color[1]);
- CLAMPED_FLOAT_TO_UBYTE(c[2], color[2]);
- CLAMPED_FLOAT_TO_UBYTE(c[3], color[3]);
-
- nmesa->clear_color = nouveauPackColor( nmesa->screen->fbFormat,
- c[0], c[1], c[2], c[3] );
-}
-
static void nouveauCalcViewport(GLcontext *ctx)
{
/* Calculate the Viewport Matrix */