blob: ebad16125d3821be4c268d8922e193f983d72780 [file] [log] [blame]
Chia-I Wuf2001df2011-07-02 17:57:30 +09001/**************************************************************************
2 *
José Fonseca87712852014-01-17 16:27:50 +00003 * Copyright 2008 VMware, Inc.
Chia-I Wuf2001df2011-07-02 17:57:30 +09004 * 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
Brian Pauladbff7e2005-04-22 21:09:39 +000031#ifndef EGLCONFIG_INCLUDED
32#define EGLCONFIG_INCLUDED
33
34
Chia-I Wu358c5a82009-09-25 22:54:34 +080035#include <assert.h>
José Fonseca601498a2010-11-01 13:30:22 +000036#include <stddef.h>
Emil Velikov7bd16932015-02-28 16:35:22 +000037#include "c99_compat.h"
38
Brian Pauladbff7e2005-04-22 21:09:39 +000039#include "egltypedefs.h"
40
41
Alexander von Gluck IV83620682015-05-13 17:13:37 -050042#ifdef __cplusplus
43extern "C" {
44#endif
45
Chia-I Wu282e5142010-10-14 16:25:30 +080046/* update _eglValidationTable and _eglOffsetOfConfig before updating this
47 * struct */
Brian Pauladbff7e2005-04-22 21:09:39 +000048struct _egl_config
49{
Chia-I Wu56822b02009-09-25 23:43:49 +080050 _EGLDisplay *Display;
Chia-I Wu282e5142010-10-14 16:25:30 +080051
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;
Rob Herring89755272016-02-02 14:23:07 -060089 EGLint FramebufferTargetAndroid;
Rob Herringe21e81a2016-02-02 14:23:08 -060090 EGLint RecordableAndroid;
Tapani Pälli41f7de42017-10-31 10:57:42 +020091 EGLint ComponentType;
Brian Pauladbff7e2005-04-22 21:09:39 +000092};
93
94
Chia-I Wua37dc172010-02-05 13:33:55 +080095/**
Chia-I Wu282e5142010-10-14 16:25:30 +080096 * Map an EGL attribute enum to the offset of the member in _EGLConfig.
Chia-I Wu358c5a82009-09-25 22:54:34 +080097 */
Emil Velikov7bd16932015-02-28 16:35:22 +000098static inline EGLint
Chia-I Wu282e5142010-10-14 16:25:30 +080099_eglOffsetOfConfig(EGLint attr)
Chia-I Wu358c5a82009-09-25 22:54:34 +0800100{
Chia-I Wu282e5142010-10-14 16:25:30 +0800101 switch (attr) {
102#define ATTRIB_MAP(attr, memb) case attr: return offsetof(_EGLConfig, memb)
103 /* core */
104 ATTRIB_MAP(EGL_BUFFER_SIZE, BufferSize);
105 ATTRIB_MAP(EGL_ALPHA_SIZE, AlphaSize);
106 ATTRIB_MAP(EGL_BLUE_SIZE, BlueSize);
107 ATTRIB_MAP(EGL_GREEN_SIZE, GreenSize);
108 ATTRIB_MAP(EGL_RED_SIZE, RedSize);
109 ATTRIB_MAP(EGL_DEPTH_SIZE, DepthSize);
110 ATTRIB_MAP(EGL_STENCIL_SIZE, StencilSize);
111 ATTRIB_MAP(EGL_CONFIG_CAVEAT, ConfigCaveat);
112 ATTRIB_MAP(EGL_CONFIG_ID, ConfigID);
113 ATTRIB_MAP(EGL_LEVEL, Level);
114 ATTRIB_MAP(EGL_MAX_PBUFFER_HEIGHT, MaxPbufferHeight);
115 ATTRIB_MAP(EGL_MAX_PBUFFER_PIXELS, MaxPbufferPixels);
116 ATTRIB_MAP(EGL_MAX_PBUFFER_WIDTH, MaxPbufferWidth);
117 ATTRIB_MAP(EGL_NATIVE_RENDERABLE, NativeRenderable);
118 ATTRIB_MAP(EGL_NATIVE_VISUAL_ID, NativeVisualID);
119 ATTRIB_MAP(EGL_NATIVE_VISUAL_TYPE, NativeVisualType);
120 ATTRIB_MAP(EGL_SAMPLES, Samples);
121 ATTRIB_MAP(EGL_SAMPLE_BUFFERS, SampleBuffers);
122 ATTRIB_MAP(EGL_SURFACE_TYPE, SurfaceType);
123 ATTRIB_MAP(EGL_TRANSPARENT_TYPE, TransparentType);
124 ATTRIB_MAP(EGL_TRANSPARENT_BLUE_VALUE, TransparentBlueValue);
125 ATTRIB_MAP(EGL_TRANSPARENT_GREEN_VALUE, TransparentGreenValue);
126 ATTRIB_MAP(EGL_TRANSPARENT_RED_VALUE, TransparentRedValue);
127 ATTRIB_MAP(EGL_BIND_TO_TEXTURE_RGB, BindToTextureRGB);
128 ATTRIB_MAP(EGL_BIND_TO_TEXTURE_RGBA, BindToTextureRGBA);
129 ATTRIB_MAP(EGL_MIN_SWAP_INTERVAL, MinSwapInterval);
130 ATTRIB_MAP(EGL_MAX_SWAP_INTERVAL, MaxSwapInterval);
131 ATTRIB_MAP(EGL_LUMINANCE_SIZE, LuminanceSize);
132 ATTRIB_MAP(EGL_ALPHA_MASK_SIZE, AlphaMaskSize);
133 ATTRIB_MAP(EGL_COLOR_BUFFER_TYPE, ColorBufferType);
134 ATTRIB_MAP(EGL_RENDERABLE_TYPE, RenderableType);
135 ATTRIB_MAP(EGL_MATCH_NATIVE_PIXMAP, MatchNativePixmap);
136 ATTRIB_MAP(EGL_CONFORMANT, Conformant);
137 /* extensions */
138 ATTRIB_MAP(EGL_Y_INVERTED_NOK, YInvertedNOK);
Rob Herring89755272016-02-02 14:23:07 -0600139 ATTRIB_MAP(EGL_FRAMEBUFFER_TARGET_ANDROID, FramebufferTargetAndroid);
Rob Herringe21e81a2016-02-02 14:23:08 -0600140 ATTRIB_MAP(EGL_RECORDABLE_ANDROID, RecordableAndroid);
Tapani Pälli41f7de42017-10-31 10:57:42 +0200141 ATTRIB_MAP(EGL_COLOR_COMPONENT_TYPE_EXT, ComponentType);
Chia-I Wu282e5142010-10-14 16:25:30 +0800142#undef ATTRIB_MAP
Kristian Høgsberg5dc0f492010-05-06 22:40:25 -0400143 default:
Chia-I Wu358c5a82009-09-25 22:54:34 +0800144 return -1;
Kristian Høgsberg5dc0f492010-05-06 22:40:25 -0400145 }
Chia-I Wu358c5a82009-09-25 22:54:34 +0800146}
147
148
149/**
Chia-I Wu358c5a82009-09-25 22:54:34 +0800150 * Update a config for a given key.
Chia-I Wua37dc172010-02-05 13:33:55 +0800151 *
152 * Note that a valid key is not necessarily a valid attribute. There are gaps
153 * in the attribute enums. The separation is to catch application errors.
154 * Drivers should never set a key that is an invalid attribute.
Chia-I Wu358c5a82009-09-25 22:54:34 +0800155 */
Emil Velikov7bd16932015-02-28 16:35:22 +0000156static inline void
Chia-I Wu358c5a82009-09-25 22:54:34 +0800157_eglSetConfigKey(_EGLConfig *conf, EGLint key, EGLint val)
158{
Chia-I Wu282e5142010-10-14 16:25:30 +0800159 EGLint offset = _eglOffsetOfConfig(key);
160 assert(offset >= 0);
161 *((EGLint *) ((char *) conf + offset)) = val;
Chia-I Wu358c5a82009-09-25 22:54:34 +0800162}
163
164
165/**
166 * Return the value for a given key.
167 */
Emil Velikov7bd16932015-02-28 16:35:22 +0000168static inline EGLint
Chia-I Wu358c5a82009-09-25 22:54:34 +0800169_eglGetConfigKey(const _EGLConfig *conf, EGLint key)
170{
Chia-I Wu282e5142010-10-14 16:25:30 +0800171 EGLint offset = _eglOffsetOfConfig(key);
172 assert(offset >= 0);
173 return *((EGLint *) ((char *) conf + offset));
Chia-I Wu358c5a82009-09-25 22:54:34 +0800174}
175
176
Emil Velikovdd438ae2015-02-28 17:20:01 +0000177extern void
Eric Engestrom54fa5ec2019-02-02 11:38:45 +0000178_eglInitConfig(_EGLConfig *config, _EGLDisplay *disp, EGLint id);
Brian Pauladbff7e2005-04-22 21:09:39 +0000179
180
Emil Velikovdd438ae2015-02-28 17:20:01 +0000181extern EGLConfig
Chia-I Wu8a6bdf32010-10-23 00:47:22 +0800182_eglLinkConfig(_EGLConfig *conf);
Brian Paul721ba152008-05-27 14:33:54 -0600183
184
Chia-I Wu8a6bdf32010-10-23 00:47:22 +0800185extern _EGLConfig *
Eric Engestrom54fa5ec2019-02-02 11:38:45 +0000186_eglLookupConfig(EGLConfig config, _EGLDisplay *disp);
Chia-I Wu56822b02009-09-25 23:43:49 +0800187
188
Chia-I Wu56822b02009-09-25 23:43:49 +0800189/**
Chia-I Wu8a6bdf32010-10-23 00:47:22 +0800190 * Return the handle of a linked config.
Chia-I Wu56822b02009-09-25 23:43:49 +0800191 */
Emil Velikov7bd16932015-02-28 16:35:22 +0000192static inline EGLConfig
Chia-I Wu56822b02009-09-25 23:43:49 +0800193_eglGetConfigHandle(_EGLConfig *conf)
194{
Chia-I Wu8a6bdf32010-10-23 00:47:22 +0800195 return (EGLConfig) conf;
Chia-I Wu56822b02009-09-25 23:43:49 +0800196}
Brian Paulc22990c2005-05-04 03:33:21 +0000197
198
Emil Velikovdd438ae2015-02-28 17:20:01 +0000199extern EGLBoolean
Chia-I Wu95cdd692009-09-25 23:24:03 +0800200_eglValidateConfig(const _EGLConfig *conf, EGLBoolean for_matching);
201
202
Emil Velikovdd438ae2015-02-28 17:20:01 +0000203extern EGLBoolean
Chia-I Wu95cdd692009-09-25 23:24:03 +0800204_eglMatchConfig(const _EGLConfig *conf, const _EGLConfig *criteria);
205
206
Emil Velikovdd438ae2015-02-28 17:20:01 +0000207extern EGLBoolean
Eric Engestrom54fa5ec2019-02-02 11:38:45 +0000208_eglParseConfigAttribList(_EGLConfig *conf, _EGLDisplay *disp,
Chia-I Wu8a6bdf32010-10-23 00:47:22 +0800209 const EGLint *attrib_list);
Chia-I Wu95cdd692009-09-25 23:24:03 +0800210
211
Emil Velikovdd438ae2015-02-28 17:20:01 +0000212extern EGLint
Chia-I Wu95cdd692009-09-25 23:24:03 +0800213_eglCompareConfigs(const _EGLConfig *conf1, const _EGLConfig *conf2,
214 const _EGLConfig *criteria, EGLBoolean compare_id);
215
216
Emil Velikovdd438ae2015-02-28 17:20:01 +0000217extern EGLBoolean
Chia-I Wu31520542011-06-25 17:32:15 +0900218_eglFilterConfigArray(_EGLArray *array, EGLConfig *configs,
219 EGLint config_size, EGLint *num_configs,
220 EGLBoolean (*match)(const _EGLConfig *, void *),
221 EGLint (*compare)(const _EGLConfig *, const _EGLConfig *,
222 void *),
223 void *filter_data);
Brian Pauladbff7e2005-04-22 21:09:39 +0000224
225
226extern EGLBoolean
Eric Engestrom9c6fa942020-07-31 01:38:41 +0200227_eglChooseConfig(const _EGLDriver *drv, _EGLDisplay *disp, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config);
Brian Pauladbff7e2005-04-22 21:09:39 +0000228
229
230extern EGLBoolean
Eric Engestrom9c6fa942020-07-31 01:38:41 +0200231_eglGetConfigAttrib(const _EGLDriver *drv, _EGLDisplay *disp, _EGLConfig *conf, EGLint attribute, EGLint *value);
Brian Pauladbff7e2005-04-22 21:09:39 +0000232
233
234extern EGLBoolean
Eric Engestrom9c6fa942020-07-31 01:38:41 +0200235_eglGetConfigs(const _EGLDriver *drv, _EGLDisplay *disp, EGLConfig *configs, EGLint config_size, EGLint *num_config);
Brian Pauladbff7e2005-04-22 21:09:39 +0000236
237
Alexander von Gluck IV83620682015-05-13 17:13:37 -0500238#ifdef __cplusplus
239}
240#endif
241
Brian Pauladbff7e2005-04-22 21:09:39 +0000242#endif /* EGLCONFIG_INCLUDED */