Sparc optimized GLAPI dispatch table.
[mesa.git] / src / mesa / main / dispatch.c
1 /* $Id: dispatch.c,v 1.23 2001/06/05 23:54:00 davem69 Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 3.5
6 *
7 * Copyright (C) 1999-2001 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 * we don't use this file's code.
32 *
33 * Eventually this file may be replaced by automatically generated
34 * code from an API spec file.
35 *
36 * NOTE: This file should _not_ be used when compiling Mesa for a DRI-
37 * based device driver.
38 *
39 */
40
41
42 #ifdef PC_HEADER
43 #include "all.h"
44 #else
45 #include "glheader.h"
46 #include "glapi.h"
47 #include "glapitable.h"
48 #include "glthread.h"
49 #endif
50
51 #if !(defined(USE_X86_ASM) || defined(USE_SPARC_ASM))
52
53 #define KEYWORD1
54 #define KEYWORD2 GLAPIENTRY
55 #if defined(USE_MGL_NAMESPACE)
56 #define NAME(func) mgl##func
57 #else
58 #define NAME(func) gl##func
59 #endif
60
61 #define DISPATCH(FUNC, ARGS, MESSAGE) \
62 (_glapi_Dispatch->FUNC) ARGS
63
64 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
65 return (_glapi_Dispatch->FUNC) ARGS
66
67
68 #ifndef GLAPIENTRY
69 #define GLAPIENTRY
70 #endif
71
72 #include "glapitemp.h"
73
74
75 #endif /* USE_X86_ASM */