summaryrefslogtreecommitdiff
path: root/src/mesa/main/api_arrayelt.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-03-17 04:13:29 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-03-17 04:13:29 +0000
commiteec33cc310ce2b99164d182719c8d6d54b80a704 (patch)
tree0de730de9f781c9418ce77157290ac8cd9bf46e7 /src/mesa/main/api_arrayelt.c
parent0f1d98c422129b002bd3d90699da7fe8286b3c47 (diff)
Init FogCoordFuncs[0..5] too, remove some unneeded #includes
Diffstat (limited to 'src/mesa/main/api_arrayelt.c')
-rw-r--r--src/mesa/main/api_arrayelt.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mesa/main/api_arrayelt.c b/src/mesa/main/api_arrayelt.c
index c94c6c07a6..d4c69d25ea 100644
--- a/src/mesa/main/api_arrayelt.c
+++ b/src/mesa/main/api_arrayelt.c
@@ -2,7 +2,7 @@
* Mesa 3-D graphics library
* Version: 6.5
*
- * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -29,10 +29,8 @@
#include "glheader.h"
#include "api_arrayelt.h"
#include "context.h"
-#include "glapi.h"
#include "imports.h"
#include "macros.h"
-#include "mtypes.h"
#include "glapioffsets.h"
#include "dispatch.h"
@@ -600,6 +598,12 @@ GLboolean _ae_create_context( GLcontext *ctx )
SecondaryColorFuncs[6] = _gloffset_SecondaryColor3fvEXT;
SecondaryColorFuncs[7] = _gloffset_SecondaryColor3dvEXT;
+ FogCoordFuncs[0] = -1;
+ FogCoordFuncs[1] = -1;
+ FogCoordFuncs[2] = -1;
+ FogCoordFuncs[3] = -1;
+ FogCoordFuncs[4] = -1;
+ FogCoordFuncs[5] = -1;
FogCoordFuncs[6] = _gloffset_FogCoordfvEXT;
FogCoordFuncs[7] = _gloffset_FogCoorddvEXT;