egl: Fixes transparency with EGL and X11.
[mesa.git] / src / egl / main / eglconfig.h
1 /**************************************************************************
2 *
3 * Copyright 2008 VMware, Inc.
4 * Copyright 2009-2010 Chia-I Wu <olvaffe@gmail.com>
5 * Copyright 2010-2011 LunarG, Inc.
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
18 * of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 * DEALINGS IN THE SOFTWARE.
27 *
28 **************************************************************************/
29
30
31 #ifndef EGLCONFIG_INCLUDED
32 #define EGLCONFIG_INCLUDED
33
34
35 #include <assert.h>
36 #include <stddef.h>
37 #include "c99_compat.h"
38
39 #include "egltypedefs.h"
40
41
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
45
46 /* update _eglValidationTable and _eglOffsetOfConfig before updating this
47 * struct */
48 struct _egl_config
49 {
50 _EGLDisplay *Display;
51
52 /* core */
53 EGLint BufferSize;
54 EGLint AlphaSize;
55 EGLint BlueSize;
56 EGLint GreenSize;
57 EGLint RedSize;
58 EGLint DepthSize;
59 EGLint StencilSize;
60 EGLint ConfigCaveat;
61 EGLint ConfigID;
62 EGLint Level;
63 EGLint MaxPbufferHeight;
64 EGLint MaxPbufferPixels;
65 EGLint MaxPbufferWidth;
66 EGLint NativeRenderable;
67 EGLint NativeVisualID;
68 EGLint NativeVisualType;
69 EGLint Samples;
70 EGLint SampleBuffers;
71 EGLint SurfaceType;
72 EGLint TransparentType;
73 EGLint TransparentBlueValue;
74 EGLint TransparentGreenValue;
75 EGLint TransparentRedValue;
76 EGLint BindToTextureRGB;
77 EGLint BindToTextureRGBA;
78 EGLint MinSwapInterval;
79 EGLint MaxSwapInterval;
80 EGLint LuminanceSize;
81 EGLint AlphaMaskSize;
82 EGLint ColorBufferType;
83 EGLint RenderableType;
84 EGLint MatchNativePixmap;
85 EGLint Conformant;
86
87 /* extensions */
88 EGLint YInvertedNOK;
89 EGLint FramebufferTargetAndroid;
90 EGLint RecordableAndroid;
91 EGLint ComponentType;
92 EGLint ConfigSelectGroup;
93 };
94
95
96 /**
97 * Map an EGL attribute enum to the offset of the member in _EGLConfig.
98 */
99 static inline EGLint
100 _eglOffsetOfConfig(EGLint attr)
101 {
102 switch (attr) {
103 #define ATTRIB_MAP(attr, memb) case attr: return offsetof(_EGLConfig, memb)
104 /* core */
105 ATTRIB_MAP(EGL_BUFFER_SIZE, BufferSize);
106 ATTRIB_MAP(EGL_ALPHA_SIZE, AlphaSize);
107 ATTRIB_MAP(EGL_BLUE_SIZE, BlueSize);
108 ATTRIB_MAP(EGL_GREEN_SIZE, GreenSize);
109 ATTRIB_MAP(EGL_RED_SIZE, RedSize);
110 ATTRIB_MAP(EGL_DEPTH_SIZE, DepthSize);
111 ATTRIB_MAP(EGL_STENCIL_SIZE, StencilSize);
112 ATTRIB_MAP(EGL_CONFIG_CAVEAT, ConfigCaveat);
113 ATTRIB_MAP(EGL_CONFIG_ID, ConfigID);
114 ATTRIB_MAP(EGL_LEVEL, Level);
115 ATTRIB_MAP(EGL_MAX_PBUFFER_HEIGHT, MaxPbufferHeight);
116 ATTRIB_MAP(EGL_MAX_PBUFFER_PIXELS, MaxPbufferPixels);
117 ATTRIB_MAP(EGL_MAX_PBUFFER_WIDTH, MaxPbufferWidth);
118 ATTRIB_MAP(EGL_NATIVE_RENDERABLE, NativeRenderable);
119 ATTRIB_MAP(EGL_NATIVE_VISUAL_ID, NativeVisualID);
120 ATTRIB_MAP(EGL_NATIVE_VISUAL_TYPE, NativeVisualType);
121 ATTRIB_MAP(EGL_SAMPLES, Samples);
122 ATTRIB_MAP(EGL_SAMPLE_BUFFERS, SampleBuffers);
123 ATTRIB_MAP(EGL_SURFACE_TYPE, SurfaceType);
124 ATTRIB_MAP(EGL_TRANSPARENT_TYPE, TransparentType);
125 ATTRIB_MAP(EGL_TRANSPARENT_BLUE_VALUE, TransparentBlueValue);
126 ATTRIB_MAP(EGL_TRANSPARENT_GREEN_VALUE, TransparentGreenValue);
127 ATTRIB_MAP(EGL_TRANSPARENT_RED_VALUE, TransparentRedValue);
128 ATTRIB_MAP(EGL_BIND_TO_TEXTURE_RGB, BindToTextureRGB);
129 ATTRIB_MAP(EGL_BIND_TO_TEXTURE_RGBA, BindToTextureRGBA);
130 ATTRIB_MAP(EGL_MIN_SWAP_INTERVAL, MinSwapInterval);
131 ATTRIB_MAP(EGL_MAX_SWAP_INTERVAL, MaxSwapInterval);
132 ATTRIB_MAP(EGL_LUMINANCE_SIZE, LuminanceSize);
133 ATTRIB_MAP(EGL_ALPHA_MASK_SIZE, AlphaMaskSize);
134 ATTRIB_MAP(EGL_COLOR_BUFFER_TYPE, ColorBufferType);
135 ATTRIB_MAP(EGL_RENDERABLE_TYPE, RenderableType);
136 ATTRIB_MAP(EGL_MATCH_NATIVE_PIXMAP, MatchNativePixmap);
137 ATTRIB_MAP(EGL_CONFORMANT, Conformant);
138 /* extensions */
139 ATTRIB_MAP(EGL_Y_INVERTED_NOK, YInvertedNOK);
140 ATTRIB_MAP(EGL_FRAMEBUFFER_TARGET_ANDROID, FramebufferTargetAndroid);
141 ATTRIB_MAP(EGL_RECORDABLE_ANDROID, RecordableAndroid);
142 ATTRIB_MAP(EGL_COLOR_COMPONENT_TYPE_EXT, ComponentType);
143 ATTRIB_MAP(EGL_CONFIG_SELECT_GROUP_MESA, ConfigSelectGroup);
144 #undef ATTRIB_MAP
145 default:
146 return -1;
147 }
148 }
149
150
151 /**
152 * Update a config for a given key.
153 *
154 * Note that a valid key is not necessarily a valid attribute. There are gaps
155 * in the attribute enums. The separation is to catch application errors.
156 * Drivers should never set a key that is an invalid attribute.
157 */
158 static inline void
159 _eglSetConfigKey(_EGLConfig *conf, EGLint key, EGLint val)
160 {
161 EGLint offset = _eglOffsetOfConfig(key);
162 assert(offset >= 0);
163 *((EGLint *) ((char *) conf + offset)) = val;
164 }
165
166
167 /**
168 * Return the value for a given key.
169 */
170 static inline EGLint
171 _eglGetConfigKey(const _EGLConfig *conf, EGLint key)
172 {
173 EGLint offset = _eglOffsetOfConfig(key);
174 assert(offset >= 0);
175 return *((EGLint *) ((char *) conf + offset));
176 }
177
178
179 extern void
180 _eglInitConfig(_EGLConfig *config, _EGLDisplay *disp, EGLint id);
181
182
183 extern EGLConfig
184 _eglLinkConfig(_EGLConfig *conf);
185
186
187 extern _EGLConfig *
188 _eglLookupConfig(EGLConfig config, _EGLDisplay *disp);
189
190
191 /**
192 * Return the handle of a linked config.
193 */
194 static inline EGLConfig
195 _eglGetConfigHandle(_EGLConfig *conf)
196 {
197 return (EGLConfig) conf;
198 }
199
200
201 extern EGLBoolean
202 _eglValidateConfig(const _EGLConfig *conf, EGLBoolean for_matching);
203
204
205 extern EGLBoolean
206 _eglMatchConfig(const _EGLConfig *conf, const _EGLConfig *criteria);
207
208
209 extern EGLBoolean
210 _eglParseConfigAttribList(_EGLConfig *conf, _EGLDisplay *disp,
211 const EGLint *attrib_list);
212
213
214 extern EGLint
215 _eglCompareConfigs(const _EGLConfig *conf1, const _EGLConfig *conf2,
216 const _EGLConfig *criteria, EGLBoolean compare_id);
217
218
219 extern EGLBoolean
220 _eglFilterConfigArray(_EGLArray *array, EGLConfig *configs,
221 EGLint config_size, EGLint *num_configs,
222 EGLBoolean (*match)(const _EGLConfig *, void *),
223 EGLint (*compare)(const _EGLConfig *, const _EGLConfig *,
224 void *),
225 void *filter_data);
226
227
228 extern EGLBoolean
229 _eglChooseConfig(_EGLDriver *drv, _EGLDisplay *disp, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config);
230
231
232 extern EGLBoolean
233 _eglGetConfigAttrib(_EGLDriver *drv, _EGLDisplay *disp, _EGLConfig *conf, EGLint attribute, EGLint *value);
234
235
236 extern EGLBoolean
237 _eglGetConfigs(_EGLDriver *drv, _EGLDisplay *disp, EGLConfig *configs, EGLint config_size, EGLint *num_config);
238
239
240 #ifdef __cplusplus
241 }
242 #endif
243
244 #endif /* EGLCONFIG_INCLUDED */