Overhaul of texture image handling.
[mesa.git] / src / mesa / main / dispatch.c
1 /* $Id: dispatch.c,v 1.19 2001/01/08 04:09:41 keithw Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 3.5
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 #include "glthread.h"
52 #endif
53
54
55
56 #define KEYWORD1
57 #define KEYWORD2 GLAPIENTRY
58 #if defined(USE_X86_ASM) && !defined(__WIN32__) && !defined(XF86DRI)
59 #define NAME(func) _glapi_fallback_##func
60 #elif defined(USE_MGL_NAMESPACE)
61 #define NAME(func) mgl##func
62 #else
63 #define NAME(func) gl##func
64 #endif
65
66 #ifdef DEBUG
67
68 #if 0
69 static int
70 trace(void)
71 {
72 static int trace = -1;
73 if (trace < 0)
74 trace = getenv("MESA_TRACE") ? 1 : 0;
75 return trace > 0;
76 }
77 #endif
78
79 #define F stderr
80
81 #define DISPATCH(FUNC, ARGS, MESSAGE) \
82 const struct _glapi_table *dispatch; \
83 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
84 (dispatch->FUNC) ARGS
85
86 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
87 const struct _glapi_table *dispatch; \
88 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
89 return (dispatch->FUNC) ARGS
90
91 #if 0
92 /* From both macros above... */
93 if (trace()) { \
94 fprintf MESSAGE; \
95 fprintf(F, "\n"); \
96 }
97 #endif
98
99 #else
100
101 #define DISPATCH(FUNC, ARGS, MESSAGE) \
102 const struct _glapi_table *dispatch; \
103 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
104 (dispatch->FUNC) ARGS
105
106 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
107 const struct _glapi_table *dispatch; \
108 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
109 return (dispatch->FUNC) ARGS
110
111 #endif
112
113
114 #ifndef GLAPIENTRY
115 #define GLAPIENTRY
116 #endif
117
118 #define DO_GEOMETRY
119 #include "glapitemp.h"
120