1 | /* $Id: dispatch.c,v 1.1 2000-05-23 20:40:30 jeroen 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 | #define KEYWORD1
|
---|
54 | #define KEYWORD2 GLAPIENTRY
|
---|
55 | #if defined(USE_X86_ASM) && !defined(__WIN32__) && !defined(__WIN32OS2__) && !defined(XF86DRI)
|
---|
56 | #define NAME(func) _glapi_fallback_##func
|
---|
57 | #elif defined(USE_MGL_NAMESPACE)
|
---|
58 | #define NAME(func) mgl##func
|
---|
59 | #else
|
---|
60 | #define NAME(func) gl##func
|
---|
61 | #endif
|
---|
62 |
|
---|
63 | #ifdef DEBUG
|
---|
64 |
|
---|
65 | static int
|
---|
66 | trace(void)
|
---|
67 | {
|
---|
68 | static int trace = -1;
|
---|
69 | if (trace < 0)
|
---|
70 | trace = getenv("MESA_TRACE") ? 1 : 0;
|
---|
71 | return trace > 0;
|
---|
72 | }
|
---|
73 |
|
---|
74 | #define F stderr
|
---|
75 |
|
---|
76 | #define DISPATCH(FUNC, ARGS, MESSAGE) \
|
---|
77 | const struct _glapi_table *dispatch; \
|
---|
78 | dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
|
---|
79 | if (trace()) { \
|
---|
80 | fprintf MESSAGE; \
|
---|
81 | fprintf(F, "\n"); \
|
---|
82 | } \
|
---|
83 | (dispatch->FUNC) ARGS
|
---|
84 |
|
---|
85 | #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
|
---|
86 | const struct _glapi_table *dispatch; \
|
---|
87 | dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
|
---|
88 | if (trace()) { \
|
---|
89 | fprintf MESSAGE; \
|
---|
90 | fprintf(F, "\n"); \
|
---|
91 | } \
|
---|
92 | return (dispatch->FUNC) ARGS
|
---|
93 |
|
---|
94 | #else
|
---|
95 |
|
---|
96 | #define DISPATCH(FUNC, ARGS, MESSAGE) \
|
---|
97 | const struct _glapi_table *dispatch; \
|
---|
98 | dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
|
---|
99 | (dispatch->FUNC) ARGS;
|
---|
100 |
|
---|
101 | #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
|
---|
102 | const struct _glapi_table *dispatch; \
|
---|
103 | dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
|
---|
104 | return (dispatch->FUNC) ARGS;
|
---|
105 |
|
---|
106 | #endif
|
---|
107 |
|
---|
108 |
|
---|
109 | #ifndef GLAPIENTRY
|
---|
110 | #define GLAPIENTRY
|
---|
111 | #endif
|
---|
112 |
|
---|
113 | #include "glapitemp.h"
|
---|
114 |
|
---|