removed DO_GEOMETRY
authorBrian Paul <brian.paul@tungstengraphics.com>
Mon, 26 Mar 2001 23:36:51 +0000 (23:36 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Mon, 26 Mar 2001 23:36:51 +0000 (23:36 +0000)
src/mesa/glapi/glapitemp.h
src/mesa/main/dispatch.c

index b4e8273eca1d1f059e6aaa4b49cc403491ff65da..8b26f04296301ac3cc26b4dae3b66fa2997b4bf9 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: glapitemp.h,v 1.26 2001/03/26 20:02:38 brianp Exp $ */
+/* $Id: glapitemp.h,v 1.27 2001/03/26 23:36:51 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
  *   DISPATCH(func, args, msg) - code to do dispatch of named function.
  *                               msg is a printf-style debug message.
  *   RETURN_DISPATCH(func, args, msg) - code to do dispatch with a return value
- *   DO_GEOMETRY - if defined, build functions valid inside Begin/End
  *   DO_INIT     - if defined, emit an init function.
  *   INIT        - Macro invoked once per api function in the init function.
  *
  * Here's an example which generates the usual OpenGL functions:
  *   #define KEYWORD1
  *   #define KEYWORD2
- *   #define DO_GEOMETRY
  *   #define NAME(func)  gl##func
  *   #define DISPATCH(func, args, msg)                           \
  *          struct _glapi_table *dispatch = CurrentDispatch;     \
@@ -2503,15 +2501,6 @@ KEYWORD1 void KEYWORD2 NAME(GetCompressedTexImageARB)(GLenum target, GLint lod,
 
 
 
-/***
- *** Functions which are valid inside begin-end.  These are optionally
- *** generated according to 'DO_GEOMETRY'.
- ***/
-
-
-
-#ifdef DO_GEOMETRY
-
 KEYWORD1 void KEYWORD2 NAME(Begin)(GLenum mode)
 {
    DISPATCH(Begin, (mode), (F, "glBegin(0x%x);", mode));
@@ -3417,7 +3406,6 @@ KEYWORD1 void KEYWORD2 NAME(MultiTexCoord4svARB)(GLenum target, const GLshort *v
    DISPATCH(MultiTexCoord4svARB, (target, v), (F, ";"));
 }
 
-#endif
 
 
 /**
@@ -3891,7 +3879,6 @@ static void NAME(InitDispatch)( void )
    INIT(CompressedTexSubImage1DARB);
    INIT(GetCompressedTexImageARB);
 
-#ifdef DO_GEOMETRY
    INIT(Begin);
    INIT(CallList);
    INIT(CallLists);
@@ -4074,7 +4061,6 @@ static void NAME(InitDispatch)( void )
    INIT(MultiTexCoord4sARB);
    INIT(MultiTexCoord4svARB);
    INIT(ArrayElement);
-#endif
 }
 
 #endif
index 7582732e235c9a99bf3c4536d57204bc9fe7cc8f..0b9b17effc08e875ddd0892600d290910aab772d 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: dispatch.c,v 1.20 2001/03/12 00:48:37 gareth Exp $ */
+/* $Id: dispatch.c,v 1.21 2001/03/26 23:36:51 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -115,5 +115,4 @@ trace(void)
 #define GLAPIENTRY
 #endif
 
-#define DO_GEOMETRY
 #include "glapitemp.h"