summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-02-17 14:12:50 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-02-17 14:12:50 +0000
commit0846e52d46b36c411f79908df010072e03bb6437 (patch)
tree4f2dcde8187571eb881239368e4bba3662cb1a77 /src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c
parent6e2fd966274af5818ce2ac16b2b35ea84f1ac034 (diff)
s/0/NULL/ (Jeff Muizelaar)
Diffstat (limited to 'src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c')
-rw-r--r--src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c b/src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c
index 45950159f2..5901730494 100644
--- a/src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c
+++ b/src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c
@@ -131,7 +131,7 @@ static struct dynfn *r200_makeSSENormal3f( GLcontext *ctx, const int * key )
static struct dynfn *r200_makeSSEColor3fv( GLcontext *ctx, const int * key )
{
if (VTX_COLOR(key[0],0) != R200_VTX_FP_RGB)
- return 0;
+ return NULL;
else
{
r200ContextPtr rmesa = R200_CONTEXT(ctx);
@@ -144,7 +144,7 @@ static struct dynfn *r200_makeSSEColor3fv( GLcontext *ctx, const int * key )
static struct dynfn *r200_makeSSEColor3f( GLcontext *ctx, const int * key )
{
if (VTX_COLOR(key[0],0) != R200_VTX_FP_RGB)
- return 0;
+ return NULL;
else
{
r200ContextPtr rmesa = R200_CONTEXT(ctx);