blob: f5b90dd848af4f8fcd4469b830dc8c13ea4c23fd [file] [log] [blame]
Jesse Hall47743382013-02-08 11:13:46 -08001/*
Mathias Agopian518ec112011-05-13 16:21:08 -07002 ** Copyright 2007, The Android Open Source Project
3 **
Jesse Hall47743382013-02-08 11:13:46 -08004 ** Licensed under the Apache License, Version 2.0 (the "License");
5 ** you may not use this file except in compliance with the License.
6 ** You may obtain a copy of the License at
Mathias Agopian518ec112011-05-13 16:21:08 -07007 **
Jesse Hall47743382013-02-08 11:13:46 -08008 ** http://www.apache.org/licenses/LICENSE-2.0
Mathias Agopian518ec112011-05-13 16:21:08 -07009 **
Jesse Hall47743382013-02-08 11:13:46 -080010 ** Unless required by applicable law or agreed to in writing, software
11 ** distributed under the License is distributed on an "AS IS" BASIS,
12 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ** See the License for the specific language governing permissions and
Mathias Agopian518ec112011-05-13 16:21:08 -070014 ** limitations under the License.
15 */
16
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080017#define ATRACE_TAG ATRACE_TAG_GRAPHICS
18
Jesse Hallc07b5202013-07-04 12:08:16 -070019#include <dlfcn.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070020#include <ctype.h>
21#include <stdlib.h>
22#include <string.h>
23
24#include <hardware/gralloc.h>
25#include <system/window.h>
26
27#include <EGL/egl.h>
28#include <EGL/eglext.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070029
30#include <cutils/log.h>
31#include <cutils/atomic.h>
Mathias Agopian7db993a2012-03-25 00:49:46 -070032#include <cutils/compiler.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070033#include <cutils/properties.h>
34#include <cutils/memory.h>
35
36#include <utils/KeyedVector.h>
37#include <utils/SortedVector.h>
38#include <utils/String8.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080039#include <utils/Trace.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070040
Mathias Agopian39c24a22013-04-04 23:17:56 -070041#include "../egl_impl.h"
42#include "../glestrace.h"
43#include "../hooks.h"
Mathias Agopian518ec112011-05-13 16:21:08 -070044
45#include "egl_display.h"
Mathias Agopian518ec112011-05-13 16:21:08 -070046#include "egl_object.h"
47#include "egl_tls.h"
Mathias Agopianada798b2012-02-13 17:09:30 -080048#include "egldefs.h"
Mathias Agopian518ec112011-05-13 16:21:08 -070049
50using namespace android;
51
Jesse Halla2ba4282013-09-14 21:00:14 -070052// This extension has not been ratified yet, so can't be shipped.
53// Implementation is incomplete and untested.
54#define ENABLE_EGL_KHR_GL_COLORSPACE 0
55
Mathias Agopian518ec112011-05-13 16:21:08 -070056// ----------------------------------------------------------------------------
57
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070058namespace android {
59
Mathias Agopian518ec112011-05-13 16:21:08 -070060struct extention_map_t {
61 const char* name;
62 __eglMustCastToProperFunctionPointerType address;
63};
64
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070065/*
Jesse Hall21558da2013-08-06 15:31:22 -070066 * This is the list of EGL extensions exposed to applications.
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070067 *
Jesse Hall21558da2013-08-06 15:31:22 -070068 * Some of them (gBuiltinExtensionString) are implemented entirely in this EGL
69 * wrapper and are always available.
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070070 *
Jesse Hall21558da2013-08-06 15:31:22 -070071 * The rest (gExtensionString) depend on support in the EGL driver, and are
72 * only available if the driver supports them. However, some of these must be
73 * supported because they are used by the Android system itself; these are
74 * listd as mandatory below and are required by the CDD. The system *assumes*
75 * the mandatory extensions are present and may not function properly if some
76 * are missing.
77 *
78 * NOTE: Both strings MUST have a single space as the last character.
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070079 */
Jesse Hall21558da2013-08-06 15:31:22 -070080extern char const * const gBuiltinExtensionString =
81 "EGL_KHR_get_all_proc_addresses "
82 "EGL_ANDROID_presentation_time "
Dan Stozaa894d082015-02-19 15:27:36 -080083 "EGL_KHR_swap_buffers_with_damage "
Jesse Hall21558da2013-08-06 15:31:22 -070084 ;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070085extern char const * const gExtensionString =
86 "EGL_KHR_image " // mandatory
87 "EGL_KHR_image_base " // mandatory
88 "EGL_KHR_image_pixmap "
89 "EGL_KHR_lock_surface "
Jesse Halla2ba4282013-09-14 21:00:14 -070090#if (ENABLE_EGL_KHR_GL_COLORSPACE != 0)
Jesse Hallc2e41222013-08-08 13:40:22 -070091 "EGL_KHR_gl_colorspace "
Jesse Halla2ba4282013-09-14 21:00:14 -070092#endif
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070093 "EGL_KHR_gl_texture_2D_image "
94 "EGL_KHR_gl_texture_cubemap_image "
95 "EGL_KHR_gl_renderbuffer_image "
96 "EGL_KHR_reusable_sync "
97 "EGL_KHR_fence_sync "
Jamie Gennisf6d1c392013-04-25 18:48:41 -070098 "EGL_KHR_create_context "
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070099 "EGL_EXT_create_context_robustness "
100 "EGL_NV_system_time "
101 "EGL_ANDROID_image_native_buffer " // mandatory
Mathias Agopian2bb71682013-03-27 17:32:41 -0700102 "EGL_KHR_wait_sync " // strongly recommended
Jamie Gennisdbe92452013-09-23 17:22:10 -0700103 "EGL_ANDROID_recordable " // mandatory
Dan Stozaa894d082015-02-19 15:27:36 -0800104 "EGL_KHR_partial_update " // strongly recommended
105 "EGL_EXT_buffer_age " // strongly recommended with partial_update
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700106 ;
107
108// extensions not exposed to applications but used by the ANDROID system
109// "EGL_ANDROID_blob_cache " // strongly recommended
110// "EGL_IMG_hibernate_process " // optional
111// "EGL_ANDROID_native_fence_sync " // strongly recommended
112// "EGL_ANDROID_framebuffer_target " // mandatory for HWC 1.1
Jamie Gennisdbe92452013-09-23 17:22:10 -0700113// "EGL_ANDROID_image_crop " // optional
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700114
115/*
116 * EGL Extensions entry-points exposed to 3rd party applications
117 * (keep in sync with gExtensionString above)
118 *
119 */
120static const extention_map_t sExtensionMap[] = {
121 // EGL_KHR_lock_surface
Mathias Agopian518ec112011-05-13 16:21:08 -0700122 { "eglLockSurfaceKHR",
123 (__eglMustCastToProperFunctionPointerType)&eglLockSurfaceKHR },
124 { "eglUnlockSurfaceKHR",
125 (__eglMustCastToProperFunctionPointerType)&eglUnlockSurfaceKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700126
127 // EGL_KHR_image, EGL_KHR_image_base
Mathias Agopian518ec112011-05-13 16:21:08 -0700128 { "eglCreateImageKHR",
129 (__eglMustCastToProperFunctionPointerType)&eglCreateImageKHR },
130 { "eglDestroyImageKHR",
131 (__eglMustCastToProperFunctionPointerType)&eglDestroyImageKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700132
133 // EGL_KHR_reusable_sync, EGL_KHR_fence_sync
134 { "eglCreateSyncKHR",
135 (__eglMustCastToProperFunctionPointerType)&eglCreateSyncKHR },
136 { "eglDestroySyncKHR",
137 (__eglMustCastToProperFunctionPointerType)&eglDestroySyncKHR },
138 { "eglClientWaitSyncKHR",
139 (__eglMustCastToProperFunctionPointerType)&eglClientWaitSyncKHR },
140 { "eglSignalSyncKHR",
141 (__eglMustCastToProperFunctionPointerType)&eglSignalSyncKHR },
142 { "eglGetSyncAttribKHR",
143 (__eglMustCastToProperFunctionPointerType)&eglGetSyncAttribKHR },
144
145 // EGL_NV_system_time
Jonas Yang1c3d72a2011-08-26 20:04:39 +0800146 { "eglGetSystemTimeFrequencyNV",
147 (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeFrequencyNV },
148 { "eglGetSystemTimeNV",
149 (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeNV },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700150
Mathias Agopian2bb71682013-03-27 17:32:41 -0700151 // EGL_KHR_wait_sync
152 { "eglWaitSyncKHR",
153 (__eglMustCastToProperFunctionPointerType)&eglWaitSyncKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700154
155 // EGL_ANDROID_presentation_time
156 { "eglPresentationTimeANDROID",
157 (__eglMustCastToProperFunctionPointerType)&eglPresentationTimeANDROID },
Dan Stozaa894d082015-02-19 15:27:36 -0800158
159 // EGL_KHR_swap_buffers_with_damage
160 { "eglSwapBuffersWithDamageKHR",
161 (__eglMustCastToProperFunctionPointerType)&eglSwapBuffersWithDamageKHR },
162
163 // EGL_KHR_partial_update
164 { "eglSetDamageRegionKHR",
165 (__eglMustCastToProperFunctionPointerType)&eglSetDamageRegionKHR },
Mathias Agopian518ec112011-05-13 16:21:08 -0700166};
167
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700168/*
169 * These extensions entry-points should not be exposed to applications.
170 * They're used internally by the Android EGL layer.
171 */
172#define FILTER_EXTENSIONS(procname) \
173 (!strcmp((procname), "eglSetBlobCacheFuncsANDROID") || \
174 !strcmp((procname), "eglHibernateProcessIMG") || \
175 !strcmp((procname), "eglAwakenProcessIMG") || \
176 !strcmp((procname), "eglDupNativeFenceFDANDROID"))
177
178
179
Mathias Agopian518ec112011-05-13 16:21:08 -0700180// accesses protected by sExtensionMapMutex
181static DefaultKeyedVector<String8, __eglMustCastToProperFunctionPointerType> sGLExtentionMap;
182static int sGLExtentionSlot = 0;
183static pthread_mutex_t sExtensionMapMutex = PTHREAD_MUTEX_INITIALIZER;
184
185static void(*findProcAddress(const char* name,
186 const extention_map_t* map, size_t n))() {
187 for (uint32_t i=0 ; i<n ; i++) {
188 if (!strcmp(name, map[i].name)) {
189 return map[i].address;
190 }
191 }
192 return NULL;
193}
194
195// ----------------------------------------------------------------------------
196
Mathias Agopian518ec112011-05-13 16:21:08 -0700197extern void setGLHooksThreadSpecific(gl_hooks_t const *value);
198extern EGLBoolean egl_init_drivers();
199extern const __eglMustCastToProperFunctionPointerType gExtensionForwarders[MAX_NUMBER_OF_GL_EXTENSIONS];
Siva Velusamya73a9772012-12-18 14:56:55 -0800200extern int getEGLDebugLevel();
201extern void setEGLDebugLevel(int level);
Mathias Agopian518ec112011-05-13 16:21:08 -0700202extern gl_hooks_t gHooksTrace;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700203
Mathias Agopian518ec112011-05-13 16:21:08 -0700204} // namespace android;
205
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700206
Mathias Agopian518ec112011-05-13 16:21:08 -0700207// ----------------------------------------------------------------------------
208
209static inline void clearError() { egl_tls_t::clearError(); }
210static inline EGLContext getContext() { return egl_tls_t::getContext(); }
211
212// ----------------------------------------------------------------------------
213
214EGLDisplay eglGetDisplay(EGLNativeDisplayType display)
215{
216 clearError();
217
Dan Stozac3289c42014-01-17 11:38:34 -0800218 uintptr_t index = reinterpret_cast<uintptr_t>(display);
Mathias Agopian518ec112011-05-13 16:21:08 -0700219 if (index >= NUM_DISPLAYS) {
220 return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
221 }
222
223 if (egl_init_drivers() == EGL_FALSE) {
224 return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
225 }
226
227 EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display);
228 return dpy;
229}
230
231// ----------------------------------------------------------------------------
232// Initialization
233// ----------------------------------------------------------------------------
234
235EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
236{
237 clearError();
238
Jesse Hallb29e5e82012-04-04 16:53:42 -0700239 egl_display_ptr dp = get_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700240 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
241
242 EGLBoolean res = dp->initialize(major, minor);
243
244 return res;
245}
246
247EGLBoolean eglTerminate(EGLDisplay dpy)
248{
249 // NOTE: don't unload the drivers b/c some APIs can be called
250 // after eglTerminate() has been called. eglTerminate() only
251 // terminates an EGLDisplay, not a EGL itself.
252
253 clearError();
254
Jesse Hallb29e5e82012-04-04 16:53:42 -0700255 egl_display_ptr dp = get_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700256 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
257
258 EGLBoolean res = dp->terminate();
Jesse Hall47743382013-02-08 11:13:46 -0800259
Mathias Agopian518ec112011-05-13 16:21:08 -0700260 return res;
261}
262
263// ----------------------------------------------------------------------------
264// configuration
265// ----------------------------------------------------------------------------
266
267EGLBoolean eglGetConfigs( EGLDisplay dpy,
268 EGLConfig *configs,
269 EGLint config_size, EGLint *num_config)
270{
271 clearError();
272
Jesse Hallb29e5e82012-04-04 16:53:42 -0700273 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700274 if (!dp) return EGL_FALSE;
275
Mathias Agopian7773c432012-02-13 20:06:08 -0800276 if (num_config==0) {
277 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700278 }
279
Mathias Agopian7773c432012-02-13 20:06:08 -0800280 EGLBoolean res = EGL_FALSE;
281 *num_config = 0;
282
283 egl_connection_t* const cnx = &gEGLImpl;
284 if (cnx->dso) {
285 res = cnx->egl.eglGetConfigs(
286 dp->disp.dpy, configs, config_size, num_config);
Mathias Agopian518ec112011-05-13 16:21:08 -0700287 }
Mathias Agopian7773c432012-02-13 20:06:08 -0800288
289 return res;
Mathias Agopian518ec112011-05-13 16:21:08 -0700290}
291
292EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list,
293 EGLConfig *configs, EGLint config_size,
294 EGLint *num_config)
295{
296 clearError();
297
Jesse Hallb29e5e82012-04-04 16:53:42 -0700298 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700299 if (!dp) return EGL_FALSE;
300
301 if (num_config==0) {
302 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
303 }
304
Mathias Agopian518ec112011-05-13 16:21:08 -0700305 EGLBoolean res = EGL_FALSE;
306 *num_config = 0;
307
Mathias Agopianada798b2012-02-13 17:09:30 -0800308 egl_connection_t* const cnx = &gEGLImpl;
309 if (cnx->dso) {
Romain Guy1cffc802012-10-15 18:13:05 -0700310 if (attrib_list) {
311 char value[PROPERTY_VALUE_MAX];
312 property_get("debug.egl.force_msaa", value, "false");
313
314 if (!strcmp(value, "true")) {
315 size_t attribCount = 0;
316 EGLint attrib = attrib_list[0];
317
318 // Only enable MSAA if the context is OpenGL ES 2.0 and
Romain Guybe3c3e42012-10-15 19:25:18 -0700319 // if no caveat is requested
Romain Guy1cffc802012-10-15 18:13:05 -0700320 const EGLint *attribRendererable = NULL;
321 const EGLint *attribCaveat = NULL;
322
323 // Count the number of attributes and look for
Romain Guybe3c3e42012-10-15 19:25:18 -0700324 // EGL_RENDERABLE_TYPE and EGL_CONFIG_CAVEAT
Romain Guy1cffc802012-10-15 18:13:05 -0700325 while (attrib != EGL_NONE) {
326 attrib = attrib_list[attribCount];
327 switch (attrib) {
328 case EGL_RENDERABLE_TYPE:
329 attribRendererable = &attrib_list[attribCount];
330 break;
331 case EGL_CONFIG_CAVEAT:
332 attribCaveat = &attrib_list[attribCount];
333 break;
334 }
335 attribCount++;
336 }
337
338 if (attribRendererable && attribRendererable[1] == EGL_OPENGL_ES2_BIT &&
339 (!attribCaveat || attribCaveat[1] != EGL_NONE)) {
Jesse Hall47743382013-02-08 11:13:46 -0800340
Romain Guy1cffc802012-10-15 18:13:05 -0700341 // Insert 2 extra attributes to force-enable MSAA 4x
342 EGLint aaAttribs[attribCount + 4];
343 aaAttribs[0] = EGL_SAMPLE_BUFFERS;
344 aaAttribs[1] = 1;
345 aaAttribs[2] = EGL_SAMPLES;
346 aaAttribs[3] = 4;
347
348 memcpy(&aaAttribs[4], attrib_list, attribCount * sizeof(EGLint));
349
350 EGLint numConfigAA;
351 EGLBoolean resAA = cnx->egl.eglChooseConfig(
352 dp->disp.dpy, aaAttribs, configs, config_size, &numConfigAA);
353
354 if (resAA == EGL_TRUE && numConfigAA > 0) {
355 ALOGD("Enabling MSAA 4x");
356 *num_config = numConfigAA;
357 return resAA;
358 }
359 }
360 }
361 }
362
Mathias Agopian7773c432012-02-13 20:06:08 -0800363 res = cnx->egl.eglChooseConfig(
364 dp->disp.dpy, attrib_list, configs, config_size, num_config);
Mathias Agopian518ec112011-05-13 16:21:08 -0700365 }
366 return res;
367}
368
369EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,
370 EGLint attribute, EGLint *value)
371{
372 clearError();
373
Jesse Hallb29e5e82012-04-04 16:53:42 -0700374 egl_connection_t* cnx = NULL;
375 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
376 if (!dp) return EGL_FALSE;
Jesse Hall47743382013-02-08 11:13:46 -0800377
Mathias Agopian518ec112011-05-13 16:21:08 -0700378 return cnx->egl.eglGetConfigAttrib(
Mathias Agopian7773c432012-02-13 20:06:08 -0800379 dp->disp.dpy, config, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700380}
381
382// ----------------------------------------------------------------------------
383// surfaces
384// ----------------------------------------------------------------------------
385
Jesse Halla2ba4282013-09-14 21:00:14 -0700386// The EGL_KHR_gl_colorspace spec hasn't been ratified yet, so these haven't
Jesse Hallc2e41222013-08-08 13:40:22 -0700387// been added to the Khronos egl.h.
388#define EGL_GL_COLORSPACE_KHR EGL_VG_COLORSPACE
389#define EGL_GL_COLORSPACE_SRGB_KHR EGL_VG_COLORSPACE_sRGB
390#define EGL_GL_COLORSPACE_LINEAR_KHR EGL_VG_COLORSPACE_LINEAR
391
392// Turn linear formats into corresponding sRGB formats when colorspace is
393// EGL_GL_COLORSPACE_SRGB_KHR, or turn sRGB formats into corresponding linear
394// formats when colorspace is EGL_GL_COLORSPACE_LINEAR_KHR. In any cases where
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800395// the modification isn't possible, the original dataSpace is returned.
396static android_dataspace modifyBufferDataspace( android_dataspace dataSpace,
397 EGLint colorspace) {
Jesse Hallc2e41222013-08-08 13:40:22 -0700398 if (colorspace == EGL_GL_COLORSPACE_LINEAR_KHR) {
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800399 return HAL_DATASPACE_SRGB_LINEAR;
Jesse Hallc2e41222013-08-08 13:40:22 -0700400 } else if (colorspace == EGL_GL_COLORSPACE_SRGB_KHR) {
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800401 return HAL_DATASPACE_SRGB;
Jesse Hallc2e41222013-08-08 13:40:22 -0700402 }
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800403 return dataSpace;
Jesse Hallc2e41222013-08-08 13:40:22 -0700404}
405
Mathias Agopian518ec112011-05-13 16:21:08 -0700406EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
407 NativeWindowType window,
408 const EGLint *attrib_list)
409{
410 clearError();
411
Jesse Hallb29e5e82012-04-04 16:53:42 -0700412 egl_connection_t* cnx = NULL;
413 egl_display_ptr dp = validate_display_connection(dpy, cnx);
414 if (dp) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800415 EGLDisplay iDpy = dp->disp.dpy;
Mathias Agopian518ec112011-05-13 16:21:08 -0700416
Andy McFaddend566ce32014-01-07 15:54:17 -0800417 int result = native_window_api_connect(window, NATIVE_WINDOW_API_EGL);
418 if (result != OK) {
419 ALOGE("eglCreateWindowSurface: native_window_api_connect (win=%p) "
420 "failed (%#x) (already connected to another API?)",
421 window, result);
Jonathan Hamilton77a9b4a2013-07-17 09:41:42 -0700422 return setError(EGL_BAD_ALLOC, EGL_NO_SURFACE);
Mathias Agopian81a63352011-07-29 17:55:48 -0700423 }
424
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700425 // Set the native window's buffers format to match what this config requests.
Jesse Hallc2e41222013-08-08 13:40:22 -0700426 // Whether to use sRGB gamma is not part of the EGLconfig, but is part
427 // of our native format. So if sRGB gamma is requested, we have to
428 // modify the EGLconfig's format before setting the native window's
429 // format.
Alistair Strachan733a8072015-02-12 12:33:25 -0800430
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700431 // by default, just pick RGBA_8888
432 EGLint format = HAL_PIXEL_FORMAT_RGBA_8888;
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800433 android_dataspace dataSpace = HAL_DATASPACE_UNKNOWN;
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700434
435 EGLint a = 0;
436 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_ALPHA_SIZE, &a);
437 if (a > 0) {
438 // alpha-channel requested, there's really only one suitable format
439 format = HAL_PIXEL_FORMAT_RGBA_8888;
440 } else {
441 EGLint r, g, b;
442 r = g = b = 0;
443 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_RED_SIZE, &r);
444 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_GREEN_SIZE, &g);
445 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_BLUE_SIZE, &b);
446 EGLint colorDepth = r + g + b;
447 if (colorDepth <= 16) {
448 format = HAL_PIXEL_FORMAT_RGB_565;
449 } else {
450 format = HAL_PIXEL_FORMAT_RGBX_8888;
451 }
Jesse Hallc2e41222013-08-08 13:40:22 -0700452 }
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700453
454 // now select a corresponding sRGB format if needed
455 if (attrib_list && dp->haveExtension("EGL_KHR_gl_colorspace")) {
456 for (const EGLint* attr = attrib_list; *attr != EGL_NONE; attr += 2) {
457 if (*attr == EGL_GL_COLORSPACE_KHR) {
Jesse Halla2ba4282013-09-14 21:00:14 -0700458 if (ENABLE_EGL_KHR_GL_COLORSPACE) {
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800459 dataSpace = modifyBufferDataspace(dataSpace, *(attr+1));
Jesse Halla2ba4282013-09-14 21:00:14 -0700460 } else {
461 // Normally we'd pass through unhandled attributes to
462 // the driver. But in case the driver implements this
463 // extension but we're disabling it, we want to prevent
464 // it getting through -- support will be broken without
465 // our help.
466 ALOGE("sRGB window surfaces not supported");
467 return setError(EGL_BAD_ATTRIBUTE, EGL_NO_SURFACE);
468 }
Jamie Gennisbee205f2011-07-01 13:12:07 -0700469 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700470 }
471 }
Alistair Strachan733a8072015-02-12 12:33:25 -0800472
Jesse Hallc2e41222013-08-08 13:40:22 -0700473 if (format != 0) {
474 int err = native_window_set_buffers_format(window, format);
475 if (err != 0) {
476 ALOGE("error setting native window pixel format: %s (%d)",
477 strerror(-err), err);
478 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
479 return setError(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
480 }
481 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700482
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800483 if (dataSpace != 0) {
484 int err = native_window_set_buffers_data_space(window, dataSpace);
485 if (err != 0) {
486 ALOGE("error setting native window pixel dataSpace: %s (%d)",
487 strerror(-err), err);
488 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
489 return setError(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
490 }
491 }
492
Jamie Gennis59769462011-11-19 18:04:43 -0800493 // the EGL spec requires that a new EGLSurface default to swap interval
494 // 1, so explicitly set that on the window here.
495 ANativeWindow* anw = reinterpret_cast<ANativeWindow*>(window);
496 anw->setSwapInterval(anw, 1);
497
Mathias Agopian518ec112011-05-13 16:21:08 -0700498 EGLSurface surface = cnx->egl.eglCreateWindowSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800499 iDpy, config, window, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700500 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700501 egl_surface_t* s = new egl_surface_t(dp.get(), config, window,
502 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700503 return s;
504 }
Mathias Agopian81a63352011-07-29 17:55:48 -0700505
506 // EGLSurface creation failed
507 native_window_set_buffers_format(window, 0);
508 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
Mathias Agopian518ec112011-05-13 16:21:08 -0700509 }
510 return EGL_NO_SURFACE;
511}
512
513EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config,
514 NativePixmapType pixmap,
515 const EGLint *attrib_list)
516{
517 clearError();
518
Jesse Hallb29e5e82012-04-04 16:53:42 -0700519 egl_connection_t* cnx = NULL;
520 egl_display_ptr dp = validate_display_connection(dpy, cnx);
521 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700522 EGLSurface surface = cnx->egl.eglCreatePixmapSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800523 dp->disp.dpy, config, pixmap, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700524 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700525 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
526 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700527 return s;
528 }
529 }
530 return EGL_NO_SURFACE;
531}
532
533EGLSurface eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config,
534 const EGLint *attrib_list)
535{
536 clearError();
537
Jesse Hallb29e5e82012-04-04 16:53:42 -0700538 egl_connection_t* cnx = NULL;
539 egl_display_ptr dp = validate_display_connection(dpy, cnx);
540 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700541 EGLSurface surface = cnx->egl.eglCreatePbufferSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800542 dp->disp.dpy, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700543 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700544 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
545 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700546 return s;
547 }
548 }
549 return EGL_NO_SURFACE;
550}
Jesse Hall47743382013-02-08 11:13:46 -0800551
Mathias Agopian518ec112011-05-13 16:21:08 -0700552EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
553{
554 clearError();
555
Jesse Hallb29e5e82012-04-04 16:53:42 -0700556 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700557 if (!dp) return EGL_FALSE;
558
Jesse Hallb29e5e82012-04-04 16:53:42 -0700559 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700560 if (!_s.get())
561 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700562
563 egl_surface_t * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -0800564 EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -0700565 if (result == EGL_TRUE) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700566 _s.terminate();
567 }
568 return result;
569}
570
571EGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surface,
572 EGLint attribute, EGLint *value)
573{
574 clearError();
575
Jesse Hallb29e5e82012-04-04 16:53:42 -0700576 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700577 if (!dp) return EGL_FALSE;
578
Jesse Hallb29e5e82012-04-04 16:53:42 -0700579 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700580 if (!_s.get())
581 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700582
Mathias Agopian518ec112011-05-13 16:21:08 -0700583 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian7773c432012-02-13 20:06:08 -0800584 return s->cnx->egl.eglQuerySurface(
585 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700586}
587
Jamie Gennise8696a42012-01-15 18:54:57 -0800588void EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800589 ATRACE_CALL();
Jamie Gennise8696a42012-01-15 18:54:57 -0800590 clearError();
591
Jesse Hallb29e5e82012-04-04 16:53:42 -0700592 const egl_display_ptr dp = validate_display(dpy);
Jamie Gennise8696a42012-01-15 18:54:57 -0800593 if (!dp) {
594 return;
595 }
596
Jesse Hallb29e5e82012-04-04 16:53:42 -0700597 SurfaceRef _s(dp.get(), surface);
Jamie Gennise8696a42012-01-15 18:54:57 -0800598 if (!_s.get()) {
599 setError(EGL_BAD_SURFACE, EGL_FALSE);
600 return;
601 }
Jamie Gennise8696a42012-01-15 18:54:57 -0800602}
603
Mathias Agopian518ec112011-05-13 16:21:08 -0700604// ----------------------------------------------------------------------------
605// Contexts
606// ----------------------------------------------------------------------------
607
608EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config,
609 EGLContext share_list, const EGLint *attrib_list)
610{
611 clearError();
612
Jesse Hallb29e5e82012-04-04 16:53:42 -0700613 egl_connection_t* cnx = NULL;
614 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
Michael Chock0673e1e2012-06-21 12:53:17 -0700615 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700616 if (share_list != EGL_NO_CONTEXT) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700617 if (!ContextRef(dp.get(), share_list).get()) {
618 return setError(EGL_BAD_CONTEXT, EGL_NO_CONTEXT);
619 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700620 egl_context_t* const c = get_context(share_list);
621 share_list = c->context;
622 }
623 EGLContext context = cnx->egl.eglCreateContext(
Mathias Agopian7773c432012-02-13 20:06:08 -0800624 dp->disp.dpy, config, share_list, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700625 if (context != EGL_NO_CONTEXT) {
626 // figure out if it's a GLESv1 or GLESv2
627 int version = 0;
628 if (attrib_list) {
629 while (*attrib_list != EGL_NONE) {
630 GLint attr = *attrib_list++;
631 GLint value = *attrib_list++;
632 if (attr == EGL_CONTEXT_CLIENT_VERSION) {
633 if (value == 1) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800634 version = egl_connection_t::GLESv1_INDEX;
Jesse Hall47743382013-02-08 11:13:46 -0800635 } else if (value == 2 || value == 3) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800636 version = egl_connection_t::GLESv2_INDEX;
Mathias Agopian518ec112011-05-13 16:21:08 -0700637 }
638 }
639 };
640 }
Jesse Hallb29e5e82012-04-04 16:53:42 -0700641 egl_context_t* c = new egl_context_t(dpy, context, config, cnx,
642 version);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800643#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800644 if (getEGLDebugLevel() > 0)
Siva Velusamy0469dd62011-11-30 15:05:37 -0800645 GLTrace_eglCreateContext(version, c);
646#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700647 return c;
648 }
649 }
650 return EGL_NO_CONTEXT;
651}
652
653EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
654{
655 clearError();
656
Jesse Hallb29e5e82012-04-04 16:53:42 -0700657 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700658 if (!dp)
659 return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -0700660
Jesse Hallb29e5e82012-04-04 16:53:42 -0700661 ContextRef _c(dp.get(), ctx);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700662 if (!_c.get())
663 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
Jesse Hall47743382013-02-08 11:13:46 -0800664
Mathias Agopian518ec112011-05-13 16:21:08 -0700665 egl_context_t * const c = get_context(ctx);
Mathias Agopianada798b2012-02-13 17:09:30 -0800666 EGLBoolean result = c->cnx->egl.eglDestroyContext(dp->disp.dpy, c->context);
Mathias Agopian518ec112011-05-13 16:21:08 -0700667 if (result == EGL_TRUE) {
668 _c.terminate();
669 }
670 return result;
671}
672
Mathias Agopian518ec112011-05-13 16:21:08 -0700673EGLBoolean eglMakeCurrent( EGLDisplay dpy, EGLSurface draw,
674 EGLSurface read, EGLContext ctx)
675{
676 clearError();
677
Jesse Hallb29e5e82012-04-04 16:53:42 -0700678 egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700679 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
680
Mathias Agopian5b287a62011-05-16 18:58:55 -0700681 // If ctx is not EGL_NO_CONTEXT, read is not EGL_NO_SURFACE, or draw is not
682 // EGL_NO_SURFACE, then an EGL_NOT_INITIALIZED error is generated if dpy is
683 // a valid but uninitialized display.
Mathias Agopian518ec112011-05-13 16:21:08 -0700684 if ( (ctx != EGL_NO_CONTEXT) || (read != EGL_NO_SURFACE) ||
685 (draw != EGL_NO_SURFACE) ) {
686 if (!dp->isReady()) return setError(EGL_NOT_INITIALIZED, EGL_FALSE);
687 }
688
689 // get a reference to the object passed in
Jesse Hallb29e5e82012-04-04 16:53:42 -0700690 ContextRef _c(dp.get(), ctx);
691 SurfaceRef _d(dp.get(), draw);
692 SurfaceRef _r(dp.get(), read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700693
694 // validate the context (if not EGL_NO_CONTEXT)
Mathias Agopian5b287a62011-05-16 18:58:55 -0700695 if ((ctx != EGL_NO_CONTEXT) && !_c.get()) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700696 // EGL_NO_CONTEXT is valid
Michael Chock0673e1e2012-06-21 12:53:17 -0700697 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700698 }
699
700 // these are the underlying implementation's object
701 EGLContext impl_ctx = EGL_NO_CONTEXT;
702 EGLSurface impl_draw = EGL_NO_SURFACE;
703 EGLSurface impl_read = EGL_NO_SURFACE;
704
705 // these are our objects structs passed in
706 egl_context_t * c = NULL;
707 egl_surface_t const * d = NULL;
708 egl_surface_t const * r = NULL;
709
710 // these are the current objects structs
711 egl_context_t * cur_c = get_context(getContext());
Jesse Hall47743382013-02-08 11:13:46 -0800712
Mathias Agopian518ec112011-05-13 16:21:08 -0700713 if (ctx != EGL_NO_CONTEXT) {
714 c = get_context(ctx);
715 impl_ctx = c->context;
716 } else {
717 // no context given, use the implementation of the current context
Michael Chock0673e1e2012-06-21 12:53:17 -0700718 if (draw != EGL_NO_SURFACE || read != EGL_NO_SURFACE) {
719 // calling eglMakeCurrent( ..., !=0, !=0, EGL_NO_CONTEXT);
720 return setError(EGL_BAD_MATCH, EGL_FALSE);
721 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700722 if (cur_c == NULL) {
723 // no current context
Mathias Agopian518ec112011-05-13 16:21:08 -0700724 // not an error, there is just no current context.
725 return EGL_TRUE;
726 }
727 }
728
729 // retrieve the underlying implementation's draw EGLSurface
730 if (draw != EGL_NO_SURFACE) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700731 if (!_d.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700732 d = get_surface(draw);
Mathias Agopian518ec112011-05-13 16:21:08 -0700733 impl_draw = d->surface;
734 }
735
736 // retrieve the underlying implementation's read EGLSurface
737 if (read != EGL_NO_SURFACE) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700738 if (!_r.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700739 r = get_surface(read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700740 impl_read = r->surface;
741 }
742
Mathias Agopian518ec112011-05-13 16:21:08 -0700743
Jesse Hallb29e5e82012-04-04 16:53:42 -0700744 EGLBoolean result = dp->makeCurrent(c, cur_c,
Mathias Agopianfb87e542012-01-30 18:20:52 -0800745 draw, read, ctx,
746 impl_draw, impl_read, impl_ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700747
748 if (result == EGL_TRUE) {
Mathias Agopianfb87e542012-01-30 18:20:52 -0800749 if (c) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700750 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
751 egl_tls_t::setContext(ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800752#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800753 if (getEGLDebugLevel() > 0)
Siva Velusamy93a826f2011-12-14 12:19:56 -0800754 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800755#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700756 _c.acquire();
757 _r.acquire();
758 _d.acquire();
Mathias Agopian518ec112011-05-13 16:21:08 -0700759 } else {
760 setGLHooksThreadSpecific(&gHooksNoContext);
761 egl_tls_t::setContext(EGL_NO_CONTEXT);
762 }
Mathias Agopian5fecea72011-08-25 18:38:24 -0700763 } else {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000764 // this will ALOGE the error
Mathias Agopian63108c32013-09-06 13:36:49 -0700765 egl_connection_t* const cnx = &gEGLImpl;
766 result = setError(cnx->egl.eglGetError(), EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700767 }
768 return result;
769}
770
771
772EGLBoolean eglQueryContext( EGLDisplay dpy, EGLContext ctx,
773 EGLint attribute, EGLint *value)
774{
775 clearError();
776
Jesse Hallb29e5e82012-04-04 16:53:42 -0700777 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700778 if (!dp) return EGL_FALSE;
779
Jesse Hallb29e5e82012-04-04 16:53:42 -0700780 ContextRef _c(dp.get(), ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700781 if (!_c.get()) return setError(EGL_BAD_CONTEXT, EGL_FALSE);
782
Mathias Agopian518ec112011-05-13 16:21:08 -0700783 egl_context_t * const c = get_context(ctx);
Mathias Agopian7773c432012-02-13 20:06:08 -0800784 return c->cnx->egl.eglQueryContext(
785 dp->disp.dpy, c->context, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700786
Mathias Agopian518ec112011-05-13 16:21:08 -0700787}
788
789EGLContext eglGetCurrentContext(void)
790{
791 // could be called before eglInitialize(), but we wouldn't have a context
792 // then, and this function would correctly return EGL_NO_CONTEXT.
793
794 clearError();
795
796 EGLContext ctx = getContext();
797 return ctx;
798}
799
800EGLSurface eglGetCurrentSurface(EGLint readdraw)
801{
802 // could be called before eglInitialize(), but we wouldn't have a context
803 // then, and this function would correctly return EGL_NO_SURFACE.
804
805 clearError();
806
807 EGLContext ctx = getContext();
808 if (ctx) {
809 egl_context_t const * const c = get_context(ctx);
810 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
811 switch (readdraw) {
812 case EGL_READ: return c->read;
Jesse Hall47743382013-02-08 11:13:46 -0800813 case EGL_DRAW: return c->draw;
Mathias Agopian518ec112011-05-13 16:21:08 -0700814 default: return setError(EGL_BAD_PARAMETER, EGL_NO_SURFACE);
815 }
816 }
817 return EGL_NO_SURFACE;
818}
819
820EGLDisplay eglGetCurrentDisplay(void)
821{
822 // could be called before eglInitialize(), but we wouldn't have a context
823 // then, and this function would correctly return EGL_NO_DISPLAY.
824
825 clearError();
826
827 EGLContext ctx = getContext();
828 if (ctx) {
829 egl_context_t const * const c = get_context(ctx);
830 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
831 return c->dpy;
832 }
833 return EGL_NO_DISPLAY;
834}
835
836EGLBoolean eglWaitGL(void)
837{
Mathias Agopian518ec112011-05-13 16:21:08 -0700838 clearError();
839
Mathias Agopianada798b2012-02-13 17:09:30 -0800840 egl_connection_t* const cnx = &gEGLImpl;
841 if (!cnx->dso)
842 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
843
844 return cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -0700845}
846
847EGLBoolean eglWaitNative(EGLint engine)
848{
Mathias Agopian518ec112011-05-13 16:21:08 -0700849 clearError();
850
Mathias Agopianada798b2012-02-13 17:09:30 -0800851 egl_connection_t* const cnx = &gEGLImpl;
852 if (!cnx->dso)
853 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
854
855 return cnx->egl.eglWaitNative(engine);
Mathias Agopian518ec112011-05-13 16:21:08 -0700856}
857
858EGLint eglGetError(void)
859{
Mathias Agopianada798b2012-02-13 17:09:30 -0800860 EGLint err = EGL_SUCCESS;
861 egl_connection_t* const cnx = &gEGLImpl;
862 if (cnx->dso) {
863 err = cnx->egl.eglGetError();
Mathias Agopian518ec112011-05-13 16:21:08 -0700864 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800865 if (err == EGL_SUCCESS) {
866 err = egl_tls_t::getError();
867 }
868 return err;
Mathias Agopian518ec112011-05-13 16:21:08 -0700869}
870
Michael Chockc0ec5e22014-01-27 08:14:33 -0800871static __eglMustCastToProperFunctionPointerType findBuiltinWrapper(
Jesse Hallc07b5202013-07-04 12:08:16 -0700872 const char* procname) {
873 const egl_connection_t* cnx = &gEGLImpl;
874 void* proc = NULL;
875
Michael Chockc0ec5e22014-01-27 08:14:33 -0800876 proc = dlsym(cnx->libEgl, procname);
877 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
878
Jesse Hallc07b5202013-07-04 12:08:16 -0700879 proc = dlsym(cnx->libGles2, procname);
880 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
881
882 proc = dlsym(cnx->libGles1, procname);
883 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
884
885 return NULL;
886}
887
Mathias Agopian518ec112011-05-13 16:21:08 -0700888__eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname)
889{
890 // eglGetProcAddress() could be the very first function called
891 // in which case we must make sure we've initialized ourselves, this
892 // happens the first time egl_get_display() is called.
893
894 clearError();
895
896 if (egl_init_drivers() == EGL_FALSE) {
897 setError(EGL_BAD_PARAMETER, NULL);
898 return NULL;
899 }
900
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700901 if (FILTER_EXTENSIONS(procname)) {
Jamie Gennisaca51c02011-11-03 17:42:43 -0700902 return NULL;
903 }
904
Mathias Agopian518ec112011-05-13 16:21:08 -0700905 __eglMustCastToProperFunctionPointerType addr;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700906 addr = findProcAddress(procname, sExtensionMap, NELEM(sExtensionMap));
Mathias Agopian518ec112011-05-13 16:21:08 -0700907 if (addr) return addr;
908
Michael Chockc0ec5e22014-01-27 08:14:33 -0800909 addr = findBuiltinWrapper(procname);
Jesse Hallc07b5202013-07-04 12:08:16 -0700910 if (addr) return addr;
Jamie Gennisaca51c02011-11-03 17:42:43 -0700911
Mathias Agopian518ec112011-05-13 16:21:08 -0700912 // this protects accesses to sGLExtentionMap and sGLExtentionSlot
913 pthread_mutex_lock(&sExtensionMapMutex);
914
915 /*
916 * Since eglGetProcAddress() is not associated to anything, it needs
917 * to return a function pointer that "works" regardless of what
918 * the current context is.
919 *
920 * For this reason, we return a "forwarder", a small stub that takes
921 * care of calling the function associated with the context
922 * currently bound.
923 *
924 * We first look for extensions we've already resolved, if we're seeing
925 * this extension for the first time, we go through all our
926 * implementations and call eglGetProcAddress() and record the
927 * result in the appropriate implementation hooks and return the
928 * address of the forwarder corresponding to that hook set.
929 *
930 */
931
932 const String8 name(procname);
933 addr = sGLExtentionMap.valueFor(name);
934 const int slot = sGLExtentionSlot;
935
Steve Blocke6f43dd2012-01-06 19:20:56 +0000936 ALOGE_IF(slot >= MAX_NUMBER_OF_GL_EXTENSIONS,
Mathias Agopian518ec112011-05-13 16:21:08 -0700937 "no more slots for eglGetProcAddress(\"%s\")",
938 procname);
939
Siva Velusamy0469dd62011-11-30 15:05:37 -0800940#if EGL_TRACE
941 gl_hooks_t *debugHooks = GLTrace_getGLHooks();
942#endif
943
Mathias Agopian518ec112011-05-13 16:21:08 -0700944 if (!addr && (slot < MAX_NUMBER_OF_GL_EXTENSIONS)) {
945 bool found = false;
Mathias Agopianada798b2012-02-13 17:09:30 -0800946
947 egl_connection_t* const cnx = &gEGLImpl;
948 if (cnx->dso && cnx->egl.eglGetProcAddress) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800949 // Extensions are independent of the bound context
luliuhui69d10072012-08-30 11:15:36 +0800950 addr =
Mathias Agopian7773c432012-02-13 20:06:08 -0800951 cnx->hooks[egl_connection_t::GLESv1_INDEX]->ext.extensions[slot] =
952 cnx->hooks[egl_connection_t::GLESv2_INDEX]->ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700953#if EGL_TRACE
Mathias Agopianada798b2012-02-13 17:09:30 -0800954 debugHooks->ext.extensions[slot] =
955 gHooksTrace.ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700956#endif
Mathias Agopianada798b2012-02-13 17:09:30 -0800957 cnx->egl.eglGetProcAddress(procname);
luliuhui69d10072012-08-30 11:15:36 +0800958 if (addr) found = true;
Mathias Agopian518ec112011-05-13 16:21:08 -0700959 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800960
Mathias Agopian518ec112011-05-13 16:21:08 -0700961 if (found) {
962 addr = gExtensionForwarders[slot];
Mathias Agopian518ec112011-05-13 16:21:08 -0700963 sGLExtentionMap.add(name, addr);
964 sGLExtentionSlot++;
965 }
966 }
967
968 pthread_mutex_unlock(&sExtensionMapMutex);
969 return addr;
970}
971
Jamie Gennis28ef8d72012-04-05 20:34:54 -0700972class FrameCompletionThread : public Thread {
973public:
974
975 static void queueSync(EGLSyncKHR sync) {
976 static sp<FrameCompletionThread> thread(new FrameCompletionThread);
977 static bool running = false;
978 if (!running) {
979 thread->run("GPUFrameCompletion");
980 running = true;
981 }
982 {
983 Mutex::Autolock lock(thread->mMutex);
984 ScopedTrace st(ATRACE_TAG, String8::format("kicked off frame %d",
985 thread->mFramesQueued).string());
986 thread->mQueue.push_back(sync);
987 thread->mCondition.signal();
988 thread->mFramesQueued++;
989 ATRACE_INT("GPU Frames Outstanding", thread->mQueue.size());
990 }
991 }
992
993private:
994 FrameCompletionThread() : mFramesQueued(0), mFramesCompleted(0) {}
995
996 virtual bool threadLoop() {
997 EGLSyncKHR sync;
998 uint32_t frameNum;
999 {
1000 Mutex::Autolock lock(mMutex);
1001 while (mQueue.isEmpty()) {
1002 mCondition.wait(mMutex);
1003 }
1004 sync = mQueue[0];
1005 frameNum = mFramesCompleted;
1006 }
1007 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
1008 {
1009 ScopedTrace st(ATRACE_TAG, String8::format("waiting for frame %d",
1010 frameNum).string());
1011 EGLint result = eglClientWaitSyncKHR(dpy, sync, 0, EGL_FOREVER_KHR);
1012 if (result == EGL_FALSE) {
1013 ALOGE("FrameCompletion: error waiting for fence: %#x", eglGetError());
1014 } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
1015 ALOGE("FrameCompletion: timeout waiting for fence");
1016 }
1017 eglDestroySyncKHR(dpy, sync);
1018 }
1019 {
1020 Mutex::Autolock lock(mMutex);
1021 mQueue.removeAt(0);
1022 mFramesCompleted++;
1023 ATRACE_INT("GPU Frames Outstanding", mQueue.size());
1024 }
1025 return true;
1026 }
1027
1028 uint32_t mFramesQueued;
1029 uint32_t mFramesCompleted;
1030 Vector<EGLSyncKHR> mQueue;
1031 Condition mCondition;
1032 Mutex mMutex;
1033};
1034
Dan Stozaa894d082015-02-19 15:27:36 -08001035EGLBoolean eglSwapBuffersWithDamageKHR(EGLDisplay dpy, EGLSurface draw,
1036 EGLint *rects, EGLint n_rects)
Mathias Agopian518ec112011-05-13 16:21:08 -07001037{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001038 ATRACE_CALL();
Mathias Agopian518ec112011-05-13 16:21:08 -07001039 clearError();
1040
Jesse Hallb29e5e82012-04-04 16:53:42 -07001041 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001042 if (!dp) return EGL_FALSE;
1043
Jesse Hallb29e5e82012-04-04 16:53:42 -07001044 SurfaceRef _s(dp.get(), draw);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001045 if (!_s.get())
1046 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001047
Siva Velusamy0469dd62011-11-30 15:05:37 -08001048#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -08001049 gl_hooks_t const *trace_hooks = getGLTraceThreadSpecific();
1050 if (getEGLDebugLevel() > 0) {
1051 if (trace_hooks == NULL) {
1052 if (GLTrace_start() < 0) {
1053 ALOGE("Disabling Tracer for OpenGL ES");
1054 setEGLDebugLevel(0);
1055 } else {
1056 // switch over to the trace version of hooks
1057 EGLContext ctx = egl_tls_t::getContext();
1058 egl_context_t * const c = get_context(ctx);
1059 if (c) {
1060 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1061 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
1062 }
1063 }
1064 }
1065
Siva Velusamy0469dd62011-11-30 15:05:37 -08001066 GLTrace_eglSwapBuffers(dpy, draw);
Siva Velusamya73a9772012-12-18 14:56:55 -08001067 } else if (trace_hooks != NULL) {
1068 // tracing is now disabled, so switch back to the non trace version
1069 EGLContext ctx = egl_tls_t::getContext();
1070 egl_context_t * const c = get_context(ctx);
1071 if (c) setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1072 GLTrace_stop();
1073 }
Siva Velusamy0469dd62011-11-30 15:05:37 -08001074#endif
1075
Mathias Agopian518ec112011-05-13 16:21:08 -07001076 egl_surface_t const * const s = get_surface(draw);
Mathias Agopian7db993a2012-03-25 00:49:46 -07001077
Mathias Agopianed6d08b2013-04-16 16:39:46 -07001078 if (CC_UNLIKELY(dp->traceGpuCompletion)) {
1079 EGLSyncKHR sync = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL);
1080 if (sync != EGL_NO_SYNC_KHR) {
1081 FrameCompletionThread::queueSync(sync);
1082 }
1083 }
1084
Mathias Agopian7db993a2012-03-25 00:49:46 -07001085 if (CC_UNLIKELY(dp->finishOnSwap)) {
1086 uint32_t pixel;
1087 egl_context_t * const c = get_context( egl_tls_t::getContext() );
1088 if (c) {
1089 // glReadPixels() ensures that the frame is complete
1090 s->cnx->hooks[c->version]->gl.glReadPixels(0,0,1,1,
1091 GL_RGBA,GL_UNSIGNED_BYTE,&pixel);
1092 }
1093 }
1094
Dan Stozaa894d082015-02-19 15:27:36 -08001095 if (n_rects == 0) {
1096 return s->cnx->egl.eglSwapBuffers(dp->disp.dpy, s->surface);
1097 }
1098
1099 Vector<android_native_rect_t> androidRects;
1100 for (int r = 0; r < n_rects; ++r) {
1101 int offset = r * 4;
1102 int x = rects[offset];
1103 int y = rects[offset + 1];
1104 int width = rects[offset + 2];
1105 int height = rects[offset + 3];
1106 android_native_rect_t androidRect;
1107 androidRect.left = x;
1108 androidRect.top = y + height;
1109 androidRect.right = x + width;
1110 androidRect.bottom = y;
1111 androidRects.push_back(androidRect);
1112 }
1113 native_window_set_surface_damage(s->win.get(), androidRects.array(),
1114 androidRects.size());
1115
1116 if (s->cnx->egl.eglSwapBuffersWithDamageKHR) {
1117 return s->cnx->egl.eglSwapBuffersWithDamageKHR(dp->disp.dpy, s->surface,
1118 rects, n_rects);
1119 } else {
1120 return s->cnx->egl.eglSwapBuffers(dp->disp.dpy, s->surface);
1121 }
1122}
1123
1124EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface surface)
1125{
1126 return eglSwapBuffersWithDamageKHR(dpy, surface, NULL, 0);
Mathias Agopian518ec112011-05-13 16:21:08 -07001127}
1128
1129EGLBoolean eglCopyBuffers( EGLDisplay dpy, EGLSurface surface,
1130 NativePixmapType target)
1131{
1132 clearError();
1133
Jesse Hallb29e5e82012-04-04 16:53:42 -07001134 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001135 if (!dp) return EGL_FALSE;
1136
Jesse Hallb29e5e82012-04-04 16:53:42 -07001137 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001138 if (!_s.get())
1139 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001140
Mathias Agopian518ec112011-05-13 16:21:08 -07001141 egl_surface_t const * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -08001142 return s->cnx->egl.eglCopyBuffers(dp->disp.dpy, s->surface, target);
Mathias Agopian518ec112011-05-13 16:21:08 -07001143}
1144
1145const char* eglQueryString(EGLDisplay dpy, EGLint name)
1146{
1147 clearError();
1148
Jesse Hallb29e5e82012-04-04 16:53:42 -07001149 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001150 if (!dp) return (const char *) NULL;
1151
1152 switch (name) {
1153 case EGL_VENDOR:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001154 return dp->getVendorString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001155 case EGL_VERSION:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001156 return dp->getVersionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001157 case EGL_EXTENSIONS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001158 return dp->getExtensionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001159 case EGL_CLIENT_APIS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001160 return dp->getClientApiString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001161 }
1162 return setError(EGL_BAD_PARAMETER, (const char *)0);
1163}
1164
Mathias Agopianca088332013-03-28 17:44:13 -07001165EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name)
1166{
1167 clearError();
1168
1169 const egl_display_ptr dp = validate_display(dpy);
1170 if (!dp) return (const char *) NULL;
1171
1172 switch (name) {
1173 case EGL_VENDOR:
1174 return dp->disp.queryString.vendor;
1175 case EGL_VERSION:
1176 return dp->disp.queryString.version;
1177 case EGL_EXTENSIONS:
1178 return dp->disp.queryString.extensions;
1179 case EGL_CLIENT_APIS:
1180 return dp->disp.queryString.clientApi;
1181 }
1182 return setError(EGL_BAD_PARAMETER, (const char *)0);
1183}
Mathias Agopian518ec112011-05-13 16:21:08 -07001184
1185// ----------------------------------------------------------------------------
1186// EGL 1.1
1187// ----------------------------------------------------------------------------
1188
1189EGLBoolean eglSurfaceAttrib(
1190 EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
1191{
1192 clearError();
1193
Jesse Hallb29e5e82012-04-04 16:53:42 -07001194 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001195 if (!dp) return EGL_FALSE;
1196
Jesse Hallb29e5e82012-04-04 16:53:42 -07001197 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001198 if (!_s.get())
1199 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001200
Mathias Agopian518ec112011-05-13 16:21:08 -07001201 egl_surface_t const * const s = get_surface(surface);
1202 if (s->cnx->egl.eglSurfaceAttrib) {
1203 return s->cnx->egl.eglSurfaceAttrib(
Mathias Agopianada798b2012-02-13 17:09:30 -08001204 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001205 }
1206 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1207}
1208
1209EGLBoolean eglBindTexImage(
1210 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1211{
1212 clearError();
1213
Jesse Hallb29e5e82012-04-04 16:53:42 -07001214 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001215 if (!dp) return EGL_FALSE;
1216
Jesse Hallb29e5e82012-04-04 16:53:42 -07001217 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001218 if (!_s.get())
1219 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001220
Mathias Agopian518ec112011-05-13 16:21:08 -07001221 egl_surface_t const * const s = get_surface(surface);
1222 if (s->cnx->egl.eglBindTexImage) {
1223 return s->cnx->egl.eglBindTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001224 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001225 }
1226 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1227}
1228
1229EGLBoolean eglReleaseTexImage(
1230 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1231{
1232 clearError();
1233
Jesse Hallb29e5e82012-04-04 16:53:42 -07001234 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001235 if (!dp) return EGL_FALSE;
1236
Jesse Hallb29e5e82012-04-04 16:53:42 -07001237 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001238 if (!_s.get())
1239 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001240
Mathias Agopian518ec112011-05-13 16:21:08 -07001241 egl_surface_t const * const s = get_surface(surface);
1242 if (s->cnx->egl.eglReleaseTexImage) {
1243 return s->cnx->egl.eglReleaseTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001244 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001245 }
1246 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1247}
1248
1249EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
1250{
1251 clearError();
1252
Jesse Hallb29e5e82012-04-04 16:53:42 -07001253 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001254 if (!dp) return EGL_FALSE;
1255
1256 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001257 egl_connection_t* const cnx = &gEGLImpl;
1258 if (cnx->dso && cnx->egl.eglSwapInterval) {
1259 res = cnx->egl.eglSwapInterval(dp->disp.dpy, interval);
Mathias Agopian518ec112011-05-13 16:21:08 -07001260 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001261
Mathias Agopian518ec112011-05-13 16:21:08 -07001262 return res;
1263}
1264
1265
1266// ----------------------------------------------------------------------------
1267// EGL 1.2
1268// ----------------------------------------------------------------------------
1269
1270EGLBoolean eglWaitClient(void)
1271{
1272 clearError();
1273
Mathias Agopianada798b2012-02-13 17:09:30 -08001274 egl_connection_t* const cnx = &gEGLImpl;
1275 if (!cnx->dso)
1276 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
1277
1278 EGLBoolean res;
1279 if (cnx->egl.eglWaitClient) {
1280 res = cnx->egl.eglWaitClient();
1281 } else {
1282 res = cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -07001283 }
1284 return res;
1285}
1286
1287EGLBoolean eglBindAPI(EGLenum api)
1288{
1289 clearError();
1290
1291 if (egl_init_drivers() == EGL_FALSE) {
1292 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1293 }
1294
1295 // bind this API on all EGLs
1296 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001297 egl_connection_t* const cnx = &gEGLImpl;
1298 if (cnx->dso && cnx->egl.eglBindAPI) {
1299 res = cnx->egl.eglBindAPI(api);
Mathias Agopian518ec112011-05-13 16:21:08 -07001300 }
1301 return res;
1302}
1303
1304EGLenum eglQueryAPI(void)
1305{
1306 clearError();
1307
1308 if (egl_init_drivers() == EGL_FALSE) {
1309 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1310 }
1311
Mathias Agopianada798b2012-02-13 17:09:30 -08001312 egl_connection_t* const cnx = &gEGLImpl;
1313 if (cnx->dso && cnx->egl.eglQueryAPI) {
1314 return cnx->egl.eglQueryAPI();
Mathias Agopian518ec112011-05-13 16:21:08 -07001315 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001316
Mathias Agopian518ec112011-05-13 16:21:08 -07001317 // or, it can only be OpenGL ES
1318 return EGL_OPENGL_ES_API;
1319}
1320
1321EGLBoolean eglReleaseThread(void)
1322{
1323 clearError();
1324
Mathias Agopian4e620dd2013-05-30 16:07:36 -07001325#if EGL_TRACE
1326 if (getEGLDebugLevel() > 0)
1327 GLTrace_eglReleaseThread();
1328#endif
1329
Mathias Agopian518ec112011-05-13 16:21:08 -07001330 // If there is context bound to the thread, release it
Mathias Agopianfb87e542012-01-30 18:20:52 -08001331 egl_display_t::loseCurrent(get_context(getContext()));
Mathias Agopian518ec112011-05-13 16:21:08 -07001332
Mathias Agopianada798b2012-02-13 17:09:30 -08001333 egl_connection_t* const cnx = &gEGLImpl;
1334 if (cnx->dso && cnx->egl.eglReleaseThread) {
1335 cnx->egl.eglReleaseThread();
Mathias Agopian518ec112011-05-13 16:21:08 -07001336 }
1337 egl_tls_t::clearTLS();
Mathias Agopian518ec112011-05-13 16:21:08 -07001338 return EGL_TRUE;
1339}
1340
1341EGLSurface eglCreatePbufferFromClientBuffer(
1342 EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer,
1343 EGLConfig config, const EGLint *attrib_list)
1344{
1345 clearError();
1346
Jesse Hallb29e5e82012-04-04 16:53:42 -07001347 egl_connection_t* cnx = NULL;
1348 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
1349 if (!dp) return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -07001350 if (cnx->egl.eglCreatePbufferFromClientBuffer) {
1351 return cnx->egl.eglCreatePbufferFromClientBuffer(
Mathias Agopian7773c432012-02-13 20:06:08 -08001352 dp->disp.dpy, buftype, buffer, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001353 }
1354 return setError(EGL_BAD_CONFIG, EGL_NO_SURFACE);
1355}
1356
1357// ----------------------------------------------------------------------------
1358// EGL_EGLEXT_VERSION 3
1359// ----------------------------------------------------------------------------
1360
1361EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface,
1362 const EGLint *attrib_list)
1363{
1364 clearError();
1365
Jesse Hallb29e5e82012-04-04 16:53:42 -07001366 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001367 if (!dp) return EGL_FALSE;
1368
Jesse Hallb29e5e82012-04-04 16:53:42 -07001369 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001370 if (!_s.get())
1371 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001372
1373 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001374 if (s->cnx->egl.eglLockSurfaceKHR) {
1375 return s->cnx->egl.eglLockSurfaceKHR(
Mathias Agopianada798b2012-02-13 17:09:30 -08001376 dp->disp.dpy, s->surface, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001377 }
1378 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1379}
1380
1381EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface)
1382{
1383 clearError();
1384
Jesse Hallb29e5e82012-04-04 16:53:42 -07001385 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001386 if (!dp) return EGL_FALSE;
1387
Jesse Hallb29e5e82012-04-04 16:53:42 -07001388 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001389 if (!_s.get())
1390 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001391
1392 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001393 if (s->cnx->egl.eglUnlockSurfaceKHR) {
Mathias Agopianada798b2012-02-13 17:09:30 -08001394 return s->cnx->egl.eglUnlockSurfaceKHR(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001395 }
1396 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1397}
1398
1399EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1400 EGLClientBuffer buffer, const EGLint *attrib_list)
1401{
1402 clearError();
1403
Jesse Hallb29e5e82012-04-04 16:53:42 -07001404 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001405 if (!dp) return EGL_NO_IMAGE_KHR;
1406
Jesse Hallb29e5e82012-04-04 16:53:42 -07001407 ContextRef _c(dp.get(), ctx);
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001408 egl_context_t * const c = _c.get();
Mathias Agopian518ec112011-05-13 16:21:08 -07001409
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001410 EGLImageKHR result = EGL_NO_IMAGE_KHR;
1411 egl_connection_t* const cnx = &gEGLImpl;
1412 if (cnx->dso && cnx->egl.eglCreateImageKHR) {
1413 result = cnx->egl.eglCreateImageKHR(
1414 dp->disp.dpy,
1415 c ? c->context : EGL_NO_CONTEXT,
1416 target, buffer, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001417 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001418 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001419}
1420
1421EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img)
1422{
1423 clearError();
1424
Jesse Hallb29e5e82012-04-04 16:53:42 -07001425 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001426 if (!dp) return EGL_FALSE;
1427
Steven Holte646a5c52012-06-04 20:02:11 -07001428 EGLBoolean result = EGL_FALSE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001429 egl_connection_t* const cnx = &gEGLImpl;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001430 if (cnx->dso && cnx->egl.eglDestroyImageKHR) {
Steven Holte646a5c52012-06-04 20:02:11 -07001431 result = cnx->egl.eglDestroyImageKHR(dp->disp.dpy, img);
Mathias Agopian518ec112011-05-13 16:21:08 -07001432 }
Steven Holte646a5c52012-06-04 20:02:11 -07001433 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001434}
1435
1436// ----------------------------------------------------------------------------
1437// EGL_EGLEXT_VERSION 5
1438// ----------------------------------------------------------------------------
1439
1440
1441EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list)
1442{
1443 clearError();
1444
Jesse Hallb29e5e82012-04-04 16:53:42 -07001445 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001446 if (!dp) return EGL_NO_SYNC_KHR;
1447
Mathias Agopian518ec112011-05-13 16:21:08 -07001448 EGLSyncKHR result = EGL_NO_SYNC_KHR;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001449 egl_connection_t* const cnx = &gEGLImpl;
1450 if (cnx->dso && cnx->egl.eglCreateSyncKHR) {
1451 result = cnx->egl.eglCreateSyncKHR(dp->disp.dpy, type, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001452 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001453 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001454}
1455
1456EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync)
1457{
1458 clearError();
1459
Jesse Hallb29e5e82012-04-04 16:53:42 -07001460 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001461 if (!dp) return EGL_FALSE;
1462
Mathias Agopian518ec112011-05-13 16:21:08 -07001463 EGLBoolean result = EGL_FALSE;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001464 egl_connection_t* const cnx = &gEGLImpl;
1465 if (cnx->dso && cnx->egl.eglDestroySyncKHR) {
1466 result = cnx->egl.eglDestroySyncKHR(dp->disp.dpy, sync);
Mathias Agopian518ec112011-05-13 16:21:08 -07001467 }
1468 return result;
1469}
1470
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -07001471EGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) {
1472 clearError();
1473
1474 const egl_display_ptr dp = validate_display(dpy);
1475 if (!dp) return EGL_FALSE;
1476
1477 EGLBoolean result = EGL_FALSE;
1478 egl_connection_t* const cnx = &gEGLImpl;
1479 if (cnx->dso && cnx->egl.eglSignalSyncKHR) {
1480 result = cnx->egl.eglSignalSyncKHR(
1481 dp->disp.dpy, sync, mode);
1482 }
1483 return result;
1484}
1485
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001486EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync,
1487 EGLint flags, EGLTimeKHR timeout)
Mathias Agopian518ec112011-05-13 16:21:08 -07001488{
1489 clearError();
1490
Jesse Hallb29e5e82012-04-04 16:53:42 -07001491 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001492 if (!dp) return EGL_FALSE;
1493
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001494 EGLBoolean result = EGL_FALSE;
1495 egl_connection_t* const cnx = &gEGLImpl;
1496 if (cnx->dso && cnx->egl.eglClientWaitSyncKHR) {
1497 result = cnx->egl.eglClientWaitSyncKHR(
1498 dp->disp.dpy, sync, flags, timeout);
Mathias Agopian518ec112011-05-13 16:21:08 -07001499 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001500 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001501}
1502
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001503EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync,
1504 EGLint attribute, EGLint *value)
Mathias Agopian518ec112011-05-13 16:21:08 -07001505{
1506 clearError();
1507
Jesse Hallb29e5e82012-04-04 16:53:42 -07001508 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001509 if (!dp) return EGL_FALSE;
1510
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001511 EGLBoolean result = EGL_FALSE;
1512 egl_connection_t* const cnx = &gEGLImpl;
1513 if (cnx->dso && cnx->egl.eglGetSyncAttribKHR) {
1514 result = cnx->egl.eglGetSyncAttribKHR(
1515 dp->disp.dpy, sync, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001516 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001517 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001518}
1519
1520// ----------------------------------------------------------------------------
Mathias Agopian2bb71682013-03-27 17:32:41 -07001521// EGL_EGLEXT_VERSION 15
1522// ----------------------------------------------------------------------------
1523
1524EGLint eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) {
1525 clearError();
1526 const egl_display_ptr dp = validate_display(dpy);
1527 if (!dp) return EGL_FALSE;
1528 EGLint result = EGL_FALSE;
1529 egl_connection_t* const cnx = &gEGLImpl;
1530 if (cnx->dso && cnx->egl.eglWaitSyncKHR) {
1531 result = cnx->egl.eglWaitSyncKHR(dp->disp.dpy, sync, flags);
1532 }
1533 return result;
1534}
1535
1536// ----------------------------------------------------------------------------
Mathias Agopian518ec112011-05-13 16:21:08 -07001537// ANDROID extensions
1538// ----------------------------------------------------------------------------
1539
Jamie Gennis331841b2012-09-06 14:52:00 -07001540EGLint eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync)
1541{
1542 clearError();
1543
1544 const egl_display_ptr dp = validate_display(dpy);
1545 if (!dp) return EGL_NO_NATIVE_FENCE_FD_ANDROID;
1546
1547 EGLint result = EGL_NO_NATIVE_FENCE_FD_ANDROID;
1548 egl_connection_t* const cnx = &gEGLImpl;
1549 if (cnx->dso && cnx->egl.eglDupNativeFenceFDANDROID) {
1550 result = cnx->egl.eglDupNativeFenceFDANDROID(dp->disp.dpy, sync);
1551 }
1552 return result;
1553}
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001554
Andy McFadden72841452013-03-01 16:25:32 -08001555EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface,
1556 EGLnsecsANDROID time)
1557{
1558 clearError();
1559
1560 const egl_display_ptr dp = validate_display(dpy);
1561 if (!dp) {
1562 return EGL_FALSE;
1563 }
1564
1565 SurfaceRef _s(dp.get(), surface);
1566 if (!_s.get()) {
1567 setError(EGL_BAD_SURFACE, EGL_FALSE);
1568 return EGL_FALSE;
1569 }
1570
1571 egl_surface_t const * const s = get_surface(surface);
1572 native_window_set_buffers_timestamp(s->win.get(), time);
1573
1574 return EGL_TRUE;
1575}
1576
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001577// ----------------------------------------------------------------------------
1578// NVIDIA extensions
1579// ----------------------------------------------------------------------------
1580EGLuint64NV eglGetSystemTimeFrequencyNV()
1581{
1582 clearError();
1583
1584 if (egl_init_drivers() == EGL_FALSE) {
1585 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1586 }
1587
1588 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001589 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001590
Mathias Agopianada798b2012-02-13 17:09:30 -08001591 if (cnx->dso && cnx->egl.eglGetSystemTimeFrequencyNV) {
1592 return cnx->egl.eglGetSystemTimeFrequencyNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001593 }
1594
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001595 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001596}
1597
1598EGLuint64NV eglGetSystemTimeNV()
1599{
1600 clearError();
1601
1602 if (egl_init_drivers() == EGL_FALSE) {
1603 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1604 }
1605
1606 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001607 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001608
Mathias Agopianada798b2012-02-13 17:09:30 -08001609 if (cnx->dso && cnx->egl.eglGetSystemTimeNV) {
1610 return cnx->egl.eglGetSystemTimeNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001611 }
1612
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001613 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001614}
Dan Stozaa894d082015-02-19 15:27:36 -08001615
1616// ----------------------------------------------------------------------------
1617// Partial update extension
1618// ----------------------------------------------------------------------------
1619EGLBoolean eglSetDamageRegionKHR(EGLDisplay dpy, EGLSurface surface,
1620 EGLint *rects, EGLint n_rects)
1621{
1622 clearError();
1623
1624 const egl_display_ptr dp = validate_display(dpy);
1625 if (!dp) {
1626 setError(EGL_BAD_DISPLAY, EGL_FALSE);
1627 return EGL_FALSE;
1628 }
1629
1630 SurfaceRef _s(dp.get(), surface);
1631 if (!_s.get()) {
1632 setError(EGL_BAD_SURFACE, EGL_FALSE);
1633 return EGL_FALSE;
1634 }
1635
1636 egl_surface_t const * const s = get_surface(surface);
1637 if (s->cnx->egl.eglSetDamageRegionKHR) {
1638 return s->cnx->egl.eglSetDamageRegionKHR(dp->disp.dpy, s->surface,
1639 rects, n_rects);
1640 }
1641
1642 return EGL_FALSE;
1643}