OSDN Git Service

a89b76077425329202ba04c60dc4a108f5f8b782
[android-x86/external-mesa.git] / src / mesa / main / mfeatures.h
1 /*
2  * Mesa 3-D graphics library
3  * Version:  7.1
4  *
5  * Copyright (C) 1999-2008  Brian Paul   All Rights Reserved.
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
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20  * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21  * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25
26 /**
27  * \file mfeatures.h
28  * Flags to enable/disable specific parts of the API.
29  */
30
31 #ifndef FEATURES_H
32 #define FEATURES_H
33
34 #include "compiler.h"
35
36 #ifndef _HAVE_FULL_GL
37 #define _HAVE_FULL_GL 1
38 #endif
39
40 /* assert that a feature is disabled and should never be used */
41 #define ASSERT_NO_FEATURE() ASSERT(0)
42
43 /**
44  * A feature can be anything.  But most of them share certain characteristics.
45  *
46  * When a feature defines driver entries, they can be initialized by
47  *   _MESA_INIT_<FEATURE>_FUNCTIONS
48  *
49  * When a feature defines vtxfmt entries, they can be initialized and
50  * installed by
51  *   _MESA_INIT_<FEATURE>_VTXFMT
52  *   _mesa_install_<feature>_vtxfmt
53  *
54  * When a feature defines dispatch entries, they are initialized by
55  *   _mesa_init_<feature>_dispatch
56  *
57  * When a feature has states, they are initialized and freed by
58  *   _mesa_init_<feature>
59  *   _mesa_free_<feature>_data
60  *
61  * Except for states, the others compile to no-op when a feature is disabled.
62  *
63  * The GLAPIENTRYs and helper functions defined by a feature should also
64  * compile to no-op when it is disabled.  But to save typings and to catch
65  * bugs, some of them may be unavailable, or compile to ASSERT_NO_FEATURE()
66  * when the feature is disabled.
67  *
68  * A feature following the convensions may be used without knowing if it is
69  * enabled or not.
70  */
71
72 #define FEATURE_accum  _HAVE_FULL_GL
73 #define FEATURE_arrayelt  _HAVE_FULL_GL
74 #define FEATURE_attrib_stack  _HAVE_FULL_GL
75 #define FEATURE_colortable  _HAVE_FULL_GL
76 #define FEATURE_convolve  _HAVE_FULL_GL
77 #define FEATURE_dispatch  _HAVE_FULL_GL
78 #define FEATURE_dlist  (_HAVE_FULL_GL && FEATURE_arrayelt)
79 #define FEATURE_draw_read_buffer  _HAVE_FULL_GL
80 #define FEATURE_drawpix  _HAVE_FULL_GL
81 #define FEATURE_eval  _HAVE_FULL_GL
82 #define FEATURE_feedback  _HAVE_FULL_GL
83 #define FEATURE_fixedpt 0
84 #define FEATURE_histogram  _HAVE_FULL_GL
85 #define FEATURE_pixel_transfer  _HAVE_FULL_GL
86 #define FEATURE_point_size_array 0
87 #define FEATURE_queryobj  _HAVE_FULL_GL
88 #define FEATURE_rastpos  _HAVE_FULL_GL
89 #define FEATURE_texgen  _HAVE_FULL_GL
90 #define FEATURE_texture_fxt1  _HAVE_FULL_GL
91 #define FEATURE_texture_s3tc  _HAVE_FULL_GL
92 #define FEATURE_userclip  _HAVE_FULL_GL
93 #define FEATURE_vertex_array_byte 0
94 #define FEATURE_es2_glsl 0
95
96 #define FEATURE_ARB_fragment_program  _HAVE_FULL_GL
97 #define FEATURE_ARB_framebuffer_object  _HAVE_FULL_GL
98 #define FEATURE_ARB_map_buffer_range  _HAVE_FULL_GL
99 #define FEATURE_ARB_pixel_buffer_object  _HAVE_FULL_GL
100 #define FEATURE_ARB_vertex_buffer_object  _HAVE_FULL_GL
101 #define FEATURE_ARB_vertex_program  _HAVE_FULL_GL
102 #define FEATURE_ARB_vertex_shader _HAVE_FULL_GL
103 #define FEATURE_ARB_fragment_shader _HAVE_FULL_GL
104 #define FEATURE_ARB_shader_objects (FEATURE_ARB_vertex_shader || FEATURE_ARB_fragment_shader)
105 #define FEATURE_ARB_shading_language_100 FEATURE_ARB_shader_objects
106 #define FEATURE_ARB_shading_language_120 FEATURE_ARB_shader_objects
107 #define FEATURE_ARB_sync _HAVE_FULL_GL
108
109 #define FEATURE_EXT_framebuffer_blit _HAVE_FULL_GL
110 #define FEATURE_EXT_framebuffer_object _HAVE_FULL_GL
111 #define FEATURE_EXT_pixel_buffer_object  _HAVE_FULL_GL
112 #define FEATURE_EXT_texture_sRGB _HAVE_FULL_GL
113 #define FEATURE_ATI_fragment_shader _HAVE_FULL_GL
114 #define FEATURE_NV_fence  _HAVE_FULL_GL
115 #define FEATURE_NV_fragment_program  _HAVE_FULL_GL
116 #define FEATURE_NV_vertex_program  _HAVE_FULL_GL
117
118
119 #endif /* FEATURES_H */