work on GL_SGI_color_table
[mesa.git] / src / mesa / main / dispatch.c
1 /* $Id: dispatch.c,v 1.15 2000/02/02 19:34:08 brianp Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 3.3
6 *
7 * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
28 /*
29 * This file generates all the gl* function entyrpoints.
30 * But if we're using X86-optimized dispatch (X86/glapi_x86.S) then
31 * each of the entrypoints will be prefixed with _glapi_fallback_*
32 * and will be called by the glapi_x86.S code when we're in thread-
33 * safe mode.
34 *
35 * Eventually this file may be replaced by automatically generated
36 * code from an API spec file.
37 *
38 * NOTE: This file should _not_ be used when compiling Mesa for a DRI-
39 * based device driver.
40 *
41 */
42
43
44
45 #ifdef PC_HEADER
46 #include "all.h"
47 #else
48 #include "glheader.h"
49 #include "glapi.h"
50 #include "glapitable.h"
51 #endif
52
53
54
55 #define KEYWORD1
56 #define KEYWORD2 GLAPIENTRY
57 #if defined(USE_X86_ASM) && !defined(__WIN32__) && !defined(XF86DRI)
58 #define NAME(func) _glapi_fallback_##func
59 #elif defined(USE_MGL_NAMESPACE)
60 #define NAME(func) mgl##func
61 #else
62 #define NAME(func) gl##func
63 #endif
64
65 #ifdef DEBUG
66
67 static int
68 trace(void)
69 {
70 static int trace = -1;
71 if (trace < 0)
72 trace = getenv("MESA_TRACE") ? 1 : 0;
73 return trace > 0;
74 }
75
76 #define F stderr
77
78 #define DISPATCH(FUNC, ARGS, MESSAGE) \
79 const struct _glapi_table *dispatch; \
80 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
81 if (trace()) { \
82 fprintf MESSAGE; \
83 fprintf(F, "\n"); \
84 } \
85 (dispatch->FUNC) ARGS
86
87 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
88 const struct _glapi_table *dispatch; \
89 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
90 if (trace()) { \
91 fprintf MESSAGE; \
92 fprintf(F, "\n"); \
93 } \
94 return (dispatch->FUNC) ARGS
95
96 #else
97
98 #define DISPATCH(FUNC, ARGS, MESSAGE) \
99 const struct _glapi_table *dispatch; \
100 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
101 (dispatch->FUNC) ARGS
102
103 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
104 const struct _glapi_table *dispatch; \
105 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
106 return (dispatch->FUNC) ARGS
107
108 #endif
109
110
111 #ifndef GLAPIENTRY
112 #define GLAPIENTRY
113 #endif
114
115 #include "glapitemp.h"
116