Merge branch '7.8'
[mesa.git] / src / mesa / main / remap.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.7
4 *
5 * Copyright (C) 2009 Chia-I Wu <olv@0xlab.org>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 */
25
26
27 #ifndef REMAP_H
28 #define REMAP_H
29
30
31 #include "main/mtypes.h"
32
33 struct gl_function_remap;
34
35
36 #if FEATURE_remap_table
37
38 extern int
39 driDispatchRemapTable[];
40
41 extern const char *
42 _mesa_get_function_spec(GLint func_index);
43
44 extern GLint
45 _mesa_map_function_spec(const char *spec);
46
47 extern void
48 _mesa_map_function_array(const struct gl_function_remap *func_array);
49
50 extern void
51 _mesa_map_static_functions(void);
52
53 extern void
54 _mesa_init_remap_table(void);
55
56 #else /* FEATURE_remap_table */
57
58 static INLINE const char *
59 _mesa_get_function_spec(GLint func_index)
60 {
61 return NULL;
62 }
63
64 static INLINE GLint
65 _mesa_map_function_spec(const char *spec)
66 {
67 return -1;
68 }
69
70 static INLINE void
71 _mesa_map_function_array(const struct gl_function_remap *func_array)
72 {
73 }
74
75 static INLINE void
76 _mesa_map_static_functions(void)
77 {
78 }
79
80 static INLINE void
81 _mesa_init_remap_table(void)
82 {
83 }
84
85 #endif /* FEATURE_remap_table */
86
87
88 #endif /* REMAP_H */