diff options
author | Keith Whitwell <[email protected]> | 1999-08-29 10:26:31 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 1999-08-29 10:26:31 +0000 |
commit | 3875679607fb3359a88ca6c21568d95eb509926b (patch) | |
tree | 8bf8cc43444b7ea64c7bac3cb4a71e1cf6ac918d /src/mesa | |
parent | 4f738b4c1010ddf2e1dc404c198137abeef117d4 (diff) |
new files to support vertex-based geometry
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/context.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 61c1641c462..e92a6ee99f8 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.2 1999/08/26 14:50:49 keithw Exp $ */ +/* $Id: context.c,v 1.3 1999/08/29 10:26:31 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -83,6 +83,7 @@ #include "vbfill.h" #include "vbrender.h" #include "vbxform.h" +#include "vertices.h" #include "xform.h" #ifdef XFree86Server #include "GL/xf86glx.h" @@ -305,6 +306,7 @@ static void one_time_init( void ) gl_init_translate(); gl_init_vbrender(); gl_init_vbxform(); + gl_init_vertices(); alreadyCalled = GL_TRUE; } #if defined(DEBUG) && defined(__DATE__) && defined(__TIME__) |