OSDN Git Service

mesa: remove #include "mfeatures.h" from numerous source files
[android-x86/external-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/compiler.h"
32
33 struct gl_function_pool_remap {
34    int pool_index;
35    int remap_index;
36 };
37
38 struct gl_function_remap {
39    int func_index;
40    int dispatch_offset; /* for sanity check */
41 };
42
43
44 extern int
45 driDispatchRemapTable[];
46
47 extern const char *
48 _mesa_get_function_spec(int func_index);
49
50 extern int
51 _mesa_map_function_spec(const char *spec);
52
53 extern void
54 _mesa_map_function_array(const struct gl_function_remap *func_array);
55
56 extern void
57 _mesa_map_static_functions(void);
58
59 extern void
60 _mesa_init_remap_table(void);
61
62
63 #endif /* REMAP_H */