blob: ff08a6b897a7f9a5dea5d0fdf9f8c2d51c7d24e8 [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 "
83 ;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070084extern char const * const gExtensionString =
85 "EGL_KHR_image " // mandatory
86 "EGL_KHR_image_base " // mandatory
87 "EGL_KHR_image_pixmap "
88 "EGL_KHR_lock_surface "
Jesse Halla2ba4282013-09-14 21:00:14 -070089#if (ENABLE_EGL_KHR_GL_COLORSPACE != 0)
Jesse Hallc2e41222013-08-08 13:40:22 -070090 "EGL_KHR_gl_colorspace "
Jesse Halla2ba4282013-09-14 21:00:14 -070091#endif
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070092 "EGL_KHR_gl_texture_2D_image "
93 "EGL_KHR_gl_texture_cubemap_image "
94 "EGL_KHR_gl_renderbuffer_image "
95 "EGL_KHR_reusable_sync "
96 "EGL_KHR_fence_sync "
Jamie Gennisf6d1c392013-04-25 18:48:41 -070097 "EGL_KHR_create_context "
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070098 "EGL_EXT_create_context_robustness "
99 "EGL_NV_system_time "
100 "EGL_ANDROID_image_native_buffer " // mandatory
Mathias Agopian2bb71682013-03-27 17:32:41 -0700101 "EGL_KHR_wait_sync " // strongly recommended
Jamie Gennisdbe92452013-09-23 17:22:10 -0700102 "EGL_ANDROID_recordable " // mandatory
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700103 ;
104
105// extensions not exposed to applications but used by the ANDROID system
106// "EGL_ANDROID_blob_cache " // strongly recommended
107// "EGL_IMG_hibernate_process " // optional
108// "EGL_ANDROID_native_fence_sync " // strongly recommended
109// "EGL_ANDROID_framebuffer_target " // mandatory for HWC 1.1
Jamie Gennisdbe92452013-09-23 17:22:10 -0700110// "EGL_ANDROID_image_crop " // optional
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700111
112/*
113 * EGL Extensions entry-points exposed to 3rd party applications
114 * (keep in sync with gExtensionString above)
115 *
116 */
117static const extention_map_t sExtensionMap[] = {
118 // EGL_KHR_lock_surface
Mathias Agopian518ec112011-05-13 16:21:08 -0700119 { "eglLockSurfaceKHR",
120 (__eglMustCastToProperFunctionPointerType)&eglLockSurfaceKHR },
121 { "eglUnlockSurfaceKHR",
122 (__eglMustCastToProperFunctionPointerType)&eglUnlockSurfaceKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700123
124 // EGL_KHR_image, EGL_KHR_image_base
Mathias Agopian518ec112011-05-13 16:21:08 -0700125 { "eglCreateImageKHR",
126 (__eglMustCastToProperFunctionPointerType)&eglCreateImageKHR },
127 { "eglDestroyImageKHR",
128 (__eglMustCastToProperFunctionPointerType)&eglDestroyImageKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700129
130 // EGL_KHR_reusable_sync, EGL_KHR_fence_sync
131 { "eglCreateSyncKHR",
132 (__eglMustCastToProperFunctionPointerType)&eglCreateSyncKHR },
133 { "eglDestroySyncKHR",
134 (__eglMustCastToProperFunctionPointerType)&eglDestroySyncKHR },
135 { "eglClientWaitSyncKHR",
136 (__eglMustCastToProperFunctionPointerType)&eglClientWaitSyncKHR },
137 { "eglSignalSyncKHR",
138 (__eglMustCastToProperFunctionPointerType)&eglSignalSyncKHR },
139 { "eglGetSyncAttribKHR",
140 (__eglMustCastToProperFunctionPointerType)&eglGetSyncAttribKHR },
141
142 // EGL_NV_system_time
Jonas Yang1c3d72a2011-08-26 20:04:39 +0800143 { "eglGetSystemTimeFrequencyNV",
144 (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeFrequencyNV },
145 { "eglGetSystemTimeNV",
146 (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeNV },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700147
Mathias Agopian2bb71682013-03-27 17:32:41 -0700148 // EGL_KHR_wait_sync
149 { "eglWaitSyncKHR",
150 (__eglMustCastToProperFunctionPointerType)&eglWaitSyncKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700151
152 // EGL_ANDROID_presentation_time
153 { "eglPresentationTimeANDROID",
154 (__eglMustCastToProperFunctionPointerType)&eglPresentationTimeANDROID },
Mathias Agopian518ec112011-05-13 16:21:08 -0700155};
156
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700157/*
158 * These extensions entry-points should not be exposed to applications.
159 * They're used internally by the Android EGL layer.
160 */
161#define FILTER_EXTENSIONS(procname) \
162 (!strcmp((procname), "eglSetBlobCacheFuncsANDROID") || \
163 !strcmp((procname), "eglHibernateProcessIMG") || \
164 !strcmp((procname), "eglAwakenProcessIMG") || \
165 !strcmp((procname), "eglDupNativeFenceFDANDROID"))
166
167
168
Mathias Agopian518ec112011-05-13 16:21:08 -0700169// accesses protected by sExtensionMapMutex
170static DefaultKeyedVector<String8, __eglMustCastToProperFunctionPointerType> sGLExtentionMap;
171static int sGLExtentionSlot = 0;
172static pthread_mutex_t sExtensionMapMutex = PTHREAD_MUTEX_INITIALIZER;
173
174static void(*findProcAddress(const char* name,
175 const extention_map_t* map, size_t n))() {
176 for (uint32_t i=0 ; i<n ; i++) {
177 if (!strcmp(name, map[i].name)) {
178 return map[i].address;
179 }
180 }
181 return NULL;
182}
183
184// ----------------------------------------------------------------------------
185
Mathias Agopian518ec112011-05-13 16:21:08 -0700186extern void setGLHooksThreadSpecific(gl_hooks_t const *value);
187extern EGLBoolean egl_init_drivers();
188extern const __eglMustCastToProperFunctionPointerType gExtensionForwarders[MAX_NUMBER_OF_GL_EXTENSIONS];
Siva Velusamya73a9772012-12-18 14:56:55 -0800189extern int getEGLDebugLevel();
190extern void setEGLDebugLevel(int level);
Mathias Agopian518ec112011-05-13 16:21:08 -0700191extern gl_hooks_t gHooksTrace;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700192
Mathias Agopian518ec112011-05-13 16:21:08 -0700193} // namespace android;
194
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700195
Mathias Agopian518ec112011-05-13 16:21:08 -0700196// ----------------------------------------------------------------------------
197
198static inline void clearError() { egl_tls_t::clearError(); }
199static inline EGLContext getContext() { return egl_tls_t::getContext(); }
200
201// ----------------------------------------------------------------------------
202
203EGLDisplay eglGetDisplay(EGLNativeDisplayType display)
204{
205 clearError();
206
Dan Stozac3289c42014-01-17 11:38:34 -0800207 uintptr_t index = reinterpret_cast<uintptr_t>(display);
Mathias Agopian518ec112011-05-13 16:21:08 -0700208 if (index >= NUM_DISPLAYS) {
209 return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
210 }
211
212 if (egl_init_drivers() == EGL_FALSE) {
213 return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
214 }
215
216 EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display);
217 return dpy;
218}
219
220// ----------------------------------------------------------------------------
221// Initialization
222// ----------------------------------------------------------------------------
223
224EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
225{
226 clearError();
227
Jesse Hallb29e5e82012-04-04 16:53:42 -0700228 egl_display_ptr dp = get_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700229 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
230
231 EGLBoolean res = dp->initialize(major, minor);
232
233 return res;
234}
235
236EGLBoolean eglTerminate(EGLDisplay dpy)
237{
238 // NOTE: don't unload the drivers b/c some APIs can be called
239 // after eglTerminate() has been called. eglTerminate() only
240 // terminates an EGLDisplay, not a EGL itself.
241
242 clearError();
243
Jesse Hallb29e5e82012-04-04 16:53:42 -0700244 egl_display_ptr dp = get_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700245 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
246
247 EGLBoolean res = dp->terminate();
Jesse Hall47743382013-02-08 11:13:46 -0800248
Mathias Agopian518ec112011-05-13 16:21:08 -0700249 return res;
250}
251
252// ----------------------------------------------------------------------------
253// configuration
254// ----------------------------------------------------------------------------
255
256EGLBoolean eglGetConfigs( EGLDisplay dpy,
257 EGLConfig *configs,
258 EGLint config_size, EGLint *num_config)
259{
260 clearError();
261
Jesse Hallb29e5e82012-04-04 16:53:42 -0700262 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700263 if (!dp) return EGL_FALSE;
264
Mathias Agopian7773c432012-02-13 20:06:08 -0800265 if (num_config==0) {
266 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700267 }
268
Mathias Agopian7773c432012-02-13 20:06:08 -0800269 EGLBoolean res = EGL_FALSE;
270 *num_config = 0;
271
272 egl_connection_t* const cnx = &gEGLImpl;
273 if (cnx->dso) {
274 res = cnx->egl.eglGetConfigs(
275 dp->disp.dpy, configs, config_size, num_config);
Mathias Agopian518ec112011-05-13 16:21:08 -0700276 }
Mathias Agopian7773c432012-02-13 20:06:08 -0800277
278 return res;
Mathias Agopian518ec112011-05-13 16:21:08 -0700279}
280
281EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list,
282 EGLConfig *configs, EGLint config_size,
283 EGLint *num_config)
284{
285 clearError();
286
Jesse Hallb29e5e82012-04-04 16:53:42 -0700287 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700288 if (!dp) return EGL_FALSE;
289
290 if (num_config==0) {
291 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
292 }
293
Mathias Agopian518ec112011-05-13 16:21:08 -0700294 EGLBoolean res = EGL_FALSE;
295 *num_config = 0;
296
Mathias Agopianada798b2012-02-13 17:09:30 -0800297 egl_connection_t* const cnx = &gEGLImpl;
298 if (cnx->dso) {
Romain Guy1cffc802012-10-15 18:13:05 -0700299 if (attrib_list) {
300 char value[PROPERTY_VALUE_MAX];
301 property_get("debug.egl.force_msaa", value, "false");
302
303 if (!strcmp(value, "true")) {
304 size_t attribCount = 0;
305 EGLint attrib = attrib_list[0];
306
307 // Only enable MSAA if the context is OpenGL ES 2.0 and
Romain Guybe3c3e42012-10-15 19:25:18 -0700308 // if no caveat is requested
Romain Guy1cffc802012-10-15 18:13:05 -0700309 const EGLint *attribRendererable = NULL;
310 const EGLint *attribCaveat = NULL;
311
312 // Count the number of attributes and look for
Romain Guybe3c3e42012-10-15 19:25:18 -0700313 // EGL_RENDERABLE_TYPE and EGL_CONFIG_CAVEAT
Romain Guy1cffc802012-10-15 18:13:05 -0700314 while (attrib != EGL_NONE) {
315 attrib = attrib_list[attribCount];
316 switch (attrib) {
317 case EGL_RENDERABLE_TYPE:
318 attribRendererable = &attrib_list[attribCount];
319 break;
320 case EGL_CONFIG_CAVEAT:
321 attribCaveat = &attrib_list[attribCount];
322 break;
323 }
324 attribCount++;
325 }
326
327 if (attribRendererable && attribRendererable[1] == EGL_OPENGL_ES2_BIT &&
328 (!attribCaveat || attribCaveat[1] != EGL_NONE)) {
Jesse Hall47743382013-02-08 11:13:46 -0800329
Romain Guy1cffc802012-10-15 18:13:05 -0700330 // Insert 2 extra attributes to force-enable MSAA 4x
331 EGLint aaAttribs[attribCount + 4];
332 aaAttribs[0] = EGL_SAMPLE_BUFFERS;
333 aaAttribs[1] = 1;
334 aaAttribs[2] = EGL_SAMPLES;
335 aaAttribs[3] = 4;
336
337 memcpy(&aaAttribs[4], attrib_list, attribCount * sizeof(EGLint));
338
339 EGLint numConfigAA;
340 EGLBoolean resAA = cnx->egl.eglChooseConfig(
341 dp->disp.dpy, aaAttribs, configs, config_size, &numConfigAA);
342
343 if (resAA == EGL_TRUE && numConfigAA > 0) {
344 ALOGD("Enabling MSAA 4x");
345 *num_config = numConfigAA;
346 return resAA;
347 }
348 }
349 }
350 }
351
Mathias Agopian7773c432012-02-13 20:06:08 -0800352 res = cnx->egl.eglChooseConfig(
353 dp->disp.dpy, attrib_list, configs, config_size, num_config);
Mathias Agopian518ec112011-05-13 16:21:08 -0700354 }
355 return res;
356}
357
358EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,
359 EGLint attribute, EGLint *value)
360{
361 clearError();
362
Jesse Hallb29e5e82012-04-04 16:53:42 -0700363 egl_connection_t* cnx = NULL;
364 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
365 if (!dp) return EGL_FALSE;
Jesse Hall47743382013-02-08 11:13:46 -0800366
Mathias Agopian518ec112011-05-13 16:21:08 -0700367 return cnx->egl.eglGetConfigAttrib(
Mathias Agopian7773c432012-02-13 20:06:08 -0800368 dp->disp.dpy, config, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700369}
370
371// ----------------------------------------------------------------------------
372// surfaces
373// ----------------------------------------------------------------------------
374
Jesse Halla2ba4282013-09-14 21:00:14 -0700375// The EGL_KHR_gl_colorspace spec hasn't been ratified yet, so these haven't
Jesse Hallc2e41222013-08-08 13:40:22 -0700376// been added to the Khronos egl.h.
377#define EGL_GL_COLORSPACE_KHR EGL_VG_COLORSPACE
378#define EGL_GL_COLORSPACE_SRGB_KHR EGL_VG_COLORSPACE_sRGB
379#define EGL_GL_COLORSPACE_LINEAR_KHR EGL_VG_COLORSPACE_LINEAR
380
381// Turn linear formats into corresponding sRGB formats when colorspace is
382// EGL_GL_COLORSPACE_SRGB_KHR, or turn sRGB formats into corresponding linear
383// formats when colorspace is EGL_GL_COLORSPACE_LINEAR_KHR. In any cases where
384// the modification isn't possible, the original format is returned.
385static int modifyFormatColorspace(int fmt, EGLint colorspace) {
386 if (colorspace == EGL_GL_COLORSPACE_LINEAR_KHR) {
387 switch (fmt) {
388 case HAL_PIXEL_FORMAT_sRGB_A_8888: return HAL_PIXEL_FORMAT_RGBA_8888;
Jesse Hallbc2a90b2013-08-16 07:50:11 -0700389 case HAL_PIXEL_FORMAT_sRGB_X_8888: return HAL_PIXEL_FORMAT_RGBX_8888;
Jesse Hallc2e41222013-08-08 13:40:22 -0700390 }
391 } else if (colorspace == EGL_GL_COLORSPACE_SRGB_KHR) {
392 switch (fmt) {
393 case HAL_PIXEL_FORMAT_RGBA_8888: return HAL_PIXEL_FORMAT_sRGB_A_8888;
Jesse Hallbc2a90b2013-08-16 07:50:11 -0700394 case HAL_PIXEL_FORMAT_RGBX_8888: return HAL_PIXEL_FORMAT_sRGB_X_8888;
Jesse Hallc2e41222013-08-08 13:40:22 -0700395 }
396 }
397 return fmt;
398}
399
Mathias Agopian518ec112011-05-13 16:21:08 -0700400EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
401 NativeWindowType window,
402 const EGLint *attrib_list)
403{
404 clearError();
405
Jesse Hallb29e5e82012-04-04 16:53:42 -0700406 egl_connection_t* cnx = NULL;
407 egl_display_ptr dp = validate_display_connection(dpy, cnx);
408 if (dp) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800409 EGLDisplay iDpy = dp->disp.dpy;
Mathias Agopian518ec112011-05-13 16:21:08 -0700410
Andy McFaddend566ce32014-01-07 15:54:17 -0800411 int result = native_window_api_connect(window, NATIVE_WINDOW_API_EGL);
412 if (result != OK) {
413 ALOGE("eglCreateWindowSurface: native_window_api_connect (win=%p) "
414 "failed (%#x) (already connected to another API?)",
415 window, result);
Jonathan Hamilton77a9b4a2013-07-17 09:41:42 -0700416 return setError(EGL_BAD_ALLOC, EGL_NO_SURFACE);
Mathias Agopian81a63352011-07-29 17:55:48 -0700417 }
418
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700419 // Set the native window's buffers format to match what this config requests.
Jesse Hallc2e41222013-08-08 13:40:22 -0700420 // Whether to use sRGB gamma is not part of the EGLconfig, but is part
421 // of our native format. So if sRGB gamma is requested, we have to
422 // modify the EGLconfig's format before setting the native window's
423 // format.
Alistair Strachan733a8072015-02-12 12:33:25 -0800424
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700425 // by default, just pick RGBA_8888
426 EGLint format = HAL_PIXEL_FORMAT_RGBA_8888;
427
428 EGLint a = 0;
429 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_ALPHA_SIZE, &a);
430 if (a > 0) {
431 // alpha-channel requested, there's really only one suitable format
432 format = HAL_PIXEL_FORMAT_RGBA_8888;
433 } else {
434 EGLint r, g, b;
435 r = g = b = 0;
436 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_RED_SIZE, &r);
437 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_GREEN_SIZE, &g);
438 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_BLUE_SIZE, &b);
439 EGLint colorDepth = r + g + b;
440 if (colorDepth <= 16) {
441 format = HAL_PIXEL_FORMAT_RGB_565;
442 } else {
443 format = HAL_PIXEL_FORMAT_RGBX_8888;
444 }
Jesse Hallc2e41222013-08-08 13:40:22 -0700445 }
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700446
447 // now select a corresponding sRGB format if needed
448 if (attrib_list && dp->haveExtension("EGL_KHR_gl_colorspace")) {
449 for (const EGLint* attr = attrib_list; *attr != EGL_NONE; attr += 2) {
450 if (*attr == EGL_GL_COLORSPACE_KHR) {
Jesse Halla2ba4282013-09-14 21:00:14 -0700451 if (ENABLE_EGL_KHR_GL_COLORSPACE) {
452 format = modifyFormatColorspace(format, *(attr+1));
453 } else {
454 // Normally we'd pass through unhandled attributes to
455 // the driver. But in case the driver implements this
456 // extension but we're disabling it, we want to prevent
457 // it getting through -- support will be broken without
458 // our help.
459 ALOGE("sRGB window surfaces not supported");
460 return setError(EGL_BAD_ATTRIBUTE, EGL_NO_SURFACE);
461 }
Jamie Gennisbee205f2011-07-01 13:12:07 -0700462 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700463 }
464 }
Alistair Strachan733a8072015-02-12 12:33:25 -0800465
Jesse Hallc2e41222013-08-08 13:40:22 -0700466 if (format != 0) {
467 int err = native_window_set_buffers_format(window, format);
468 if (err != 0) {
469 ALOGE("error setting native window pixel format: %s (%d)",
470 strerror(-err), err);
471 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
472 return setError(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
473 }
474 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700475
Jamie Gennis59769462011-11-19 18:04:43 -0800476 // the EGL spec requires that a new EGLSurface default to swap interval
477 // 1, so explicitly set that on the window here.
478 ANativeWindow* anw = reinterpret_cast<ANativeWindow*>(window);
479 anw->setSwapInterval(anw, 1);
480
Mathias Agopian518ec112011-05-13 16:21:08 -0700481 EGLSurface surface = cnx->egl.eglCreateWindowSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800482 iDpy, config, window, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700483 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700484 egl_surface_t* s = new egl_surface_t(dp.get(), config, window,
485 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700486 return s;
487 }
Mathias Agopian81a63352011-07-29 17:55:48 -0700488
489 // EGLSurface creation failed
490 native_window_set_buffers_format(window, 0);
491 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
Mathias Agopian518ec112011-05-13 16:21:08 -0700492 }
493 return EGL_NO_SURFACE;
494}
495
496EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config,
497 NativePixmapType pixmap,
498 const EGLint *attrib_list)
499{
500 clearError();
501
Jesse Hallb29e5e82012-04-04 16:53:42 -0700502 egl_connection_t* cnx = NULL;
503 egl_display_ptr dp = validate_display_connection(dpy, cnx);
504 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700505 EGLSurface surface = cnx->egl.eglCreatePixmapSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800506 dp->disp.dpy, config, pixmap, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700507 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700508 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
509 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700510 return s;
511 }
512 }
513 return EGL_NO_SURFACE;
514}
515
516EGLSurface eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config,
517 const EGLint *attrib_list)
518{
519 clearError();
520
Jesse Hallb29e5e82012-04-04 16:53:42 -0700521 egl_connection_t* cnx = NULL;
522 egl_display_ptr dp = validate_display_connection(dpy, cnx);
523 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700524 EGLSurface surface = cnx->egl.eglCreatePbufferSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800525 dp->disp.dpy, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700526 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700527 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
528 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700529 return s;
530 }
531 }
532 return EGL_NO_SURFACE;
533}
Jesse Hall47743382013-02-08 11:13:46 -0800534
Mathias Agopian518ec112011-05-13 16:21:08 -0700535EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
536{
537 clearError();
538
Jesse Hallb29e5e82012-04-04 16:53:42 -0700539 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700540 if (!dp) return EGL_FALSE;
541
Jesse Hallb29e5e82012-04-04 16:53:42 -0700542 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700543 if (!_s.get())
544 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700545
546 egl_surface_t * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -0800547 EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -0700548 if (result == EGL_TRUE) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700549 _s.terminate();
550 }
551 return result;
552}
553
554EGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surface,
555 EGLint attribute, EGLint *value)
556{
557 clearError();
558
Jesse Hallb29e5e82012-04-04 16:53:42 -0700559 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700560 if (!dp) return EGL_FALSE;
561
Jesse Hallb29e5e82012-04-04 16:53:42 -0700562 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700563 if (!_s.get())
564 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700565
Mathias Agopian518ec112011-05-13 16:21:08 -0700566 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian7773c432012-02-13 20:06:08 -0800567 return s->cnx->egl.eglQuerySurface(
568 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700569}
570
Jamie Gennise8696a42012-01-15 18:54:57 -0800571void EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800572 ATRACE_CALL();
Jamie Gennise8696a42012-01-15 18:54:57 -0800573 clearError();
574
Jesse Hallb29e5e82012-04-04 16:53:42 -0700575 const egl_display_ptr dp = validate_display(dpy);
Jamie Gennise8696a42012-01-15 18:54:57 -0800576 if (!dp) {
577 return;
578 }
579
Jesse Hallb29e5e82012-04-04 16:53:42 -0700580 SurfaceRef _s(dp.get(), surface);
Jamie Gennise8696a42012-01-15 18:54:57 -0800581 if (!_s.get()) {
582 setError(EGL_BAD_SURFACE, EGL_FALSE);
583 return;
584 }
Jamie Gennise8696a42012-01-15 18:54:57 -0800585}
586
Mathias Agopian518ec112011-05-13 16:21:08 -0700587// ----------------------------------------------------------------------------
588// Contexts
589// ----------------------------------------------------------------------------
590
591EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config,
592 EGLContext share_list, const EGLint *attrib_list)
593{
594 clearError();
595
Jesse Hallb29e5e82012-04-04 16:53:42 -0700596 egl_connection_t* cnx = NULL;
597 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
Michael Chock0673e1e2012-06-21 12:53:17 -0700598 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700599 if (share_list != EGL_NO_CONTEXT) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700600 if (!ContextRef(dp.get(), share_list).get()) {
601 return setError(EGL_BAD_CONTEXT, EGL_NO_CONTEXT);
602 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700603 egl_context_t* const c = get_context(share_list);
604 share_list = c->context;
605 }
606 EGLContext context = cnx->egl.eglCreateContext(
Mathias Agopian7773c432012-02-13 20:06:08 -0800607 dp->disp.dpy, config, share_list, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700608 if (context != EGL_NO_CONTEXT) {
609 // figure out if it's a GLESv1 or GLESv2
610 int version = 0;
611 if (attrib_list) {
612 while (*attrib_list != EGL_NONE) {
613 GLint attr = *attrib_list++;
614 GLint value = *attrib_list++;
615 if (attr == EGL_CONTEXT_CLIENT_VERSION) {
616 if (value == 1) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800617 version = egl_connection_t::GLESv1_INDEX;
Jesse Hall47743382013-02-08 11:13:46 -0800618 } else if (value == 2 || value == 3) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800619 version = egl_connection_t::GLESv2_INDEX;
Mathias Agopian518ec112011-05-13 16:21:08 -0700620 }
621 }
622 };
623 }
Jesse Hallb29e5e82012-04-04 16:53:42 -0700624 egl_context_t* c = new egl_context_t(dpy, context, config, cnx,
625 version);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800626#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800627 if (getEGLDebugLevel() > 0)
Siva Velusamy0469dd62011-11-30 15:05:37 -0800628 GLTrace_eglCreateContext(version, c);
629#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700630 return c;
631 }
632 }
633 return EGL_NO_CONTEXT;
634}
635
636EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
637{
638 clearError();
639
Jesse Hallb29e5e82012-04-04 16:53:42 -0700640 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700641 if (!dp)
642 return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -0700643
Jesse Hallb29e5e82012-04-04 16:53:42 -0700644 ContextRef _c(dp.get(), ctx);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700645 if (!_c.get())
646 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
Jesse Hall47743382013-02-08 11:13:46 -0800647
Mathias Agopian518ec112011-05-13 16:21:08 -0700648 egl_context_t * const c = get_context(ctx);
Mathias Agopianada798b2012-02-13 17:09:30 -0800649 EGLBoolean result = c->cnx->egl.eglDestroyContext(dp->disp.dpy, c->context);
Mathias Agopian518ec112011-05-13 16:21:08 -0700650 if (result == EGL_TRUE) {
651 _c.terminate();
652 }
653 return result;
654}
655
Mathias Agopian518ec112011-05-13 16:21:08 -0700656EGLBoolean eglMakeCurrent( EGLDisplay dpy, EGLSurface draw,
657 EGLSurface read, EGLContext ctx)
658{
659 clearError();
660
Jesse Hallb29e5e82012-04-04 16:53:42 -0700661 egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700662 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
663
Mathias Agopian5b287a62011-05-16 18:58:55 -0700664 // If ctx is not EGL_NO_CONTEXT, read is not EGL_NO_SURFACE, or draw is not
665 // EGL_NO_SURFACE, then an EGL_NOT_INITIALIZED error is generated if dpy is
666 // a valid but uninitialized display.
Mathias Agopian518ec112011-05-13 16:21:08 -0700667 if ( (ctx != EGL_NO_CONTEXT) || (read != EGL_NO_SURFACE) ||
668 (draw != EGL_NO_SURFACE) ) {
669 if (!dp->isReady()) return setError(EGL_NOT_INITIALIZED, EGL_FALSE);
670 }
671
672 // get a reference to the object passed in
Jesse Hallb29e5e82012-04-04 16:53:42 -0700673 ContextRef _c(dp.get(), ctx);
674 SurfaceRef _d(dp.get(), draw);
675 SurfaceRef _r(dp.get(), read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700676
677 // validate the context (if not EGL_NO_CONTEXT)
Mathias Agopian5b287a62011-05-16 18:58:55 -0700678 if ((ctx != EGL_NO_CONTEXT) && !_c.get()) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700679 // EGL_NO_CONTEXT is valid
Michael Chock0673e1e2012-06-21 12:53:17 -0700680 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700681 }
682
683 // these are the underlying implementation's object
684 EGLContext impl_ctx = EGL_NO_CONTEXT;
685 EGLSurface impl_draw = EGL_NO_SURFACE;
686 EGLSurface impl_read = EGL_NO_SURFACE;
687
688 // these are our objects structs passed in
689 egl_context_t * c = NULL;
690 egl_surface_t const * d = NULL;
691 egl_surface_t const * r = NULL;
692
693 // these are the current objects structs
694 egl_context_t * cur_c = get_context(getContext());
Jesse Hall47743382013-02-08 11:13:46 -0800695
Mathias Agopian518ec112011-05-13 16:21:08 -0700696 if (ctx != EGL_NO_CONTEXT) {
697 c = get_context(ctx);
698 impl_ctx = c->context;
699 } else {
700 // no context given, use the implementation of the current context
Michael Chock0673e1e2012-06-21 12:53:17 -0700701 if (draw != EGL_NO_SURFACE || read != EGL_NO_SURFACE) {
702 // calling eglMakeCurrent( ..., !=0, !=0, EGL_NO_CONTEXT);
703 return setError(EGL_BAD_MATCH, EGL_FALSE);
704 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700705 if (cur_c == NULL) {
706 // no current context
Mathias Agopian518ec112011-05-13 16:21:08 -0700707 // not an error, there is just no current context.
708 return EGL_TRUE;
709 }
710 }
711
712 // retrieve the underlying implementation's draw EGLSurface
713 if (draw != EGL_NO_SURFACE) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700714 if (!_d.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700715 d = get_surface(draw);
Mathias Agopian518ec112011-05-13 16:21:08 -0700716 impl_draw = d->surface;
717 }
718
719 // retrieve the underlying implementation's read EGLSurface
720 if (read != EGL_NO_SURFACE) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700721 if (!_r.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700722 r = get_surface(read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700723 impl_read = r->surface;
724 }
725
Mathias Agopian518ec112011-05-13 16:21:08 -0700726
Jesse Hallb29e5e82012-04-04 16:53:42 -0700727 EGLBoolean result = dp->makeCurrent(c, cur_c,
Mathias Agopianfb87e542012-01-30 18:20:52 -0800728 draw, read, ctx,
729 impl_draw, impl_read, impl_ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700730
731 if (result == EGL_TRUE) {
Mathias Agopianfb87e542012-01-30 18:20:52 -0800732 if (c) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700733 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
734 egl_tls_t::setContext(ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800735#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800736 if (getEGLDebugLevel() > 0)
Siva Velusamy93a826f2011-12-14 12:19:56 -0800737 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800738#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700739 _c.acquire();
740 _r.acquire();
741 _d.acquire();
Mathias Agopian518ec112011-05-13 16:21:08 -0700742 } else {
743 setGLHooksThreadSpecific(&gHooksNoContext);
744 egl_tls_t::setContext(EGL_NO_CONTEXT);
745 }
Mathias Agopian5fecea72011-08-25 18:38:24 -0700746 } else {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000747 // this will ALOGE the error
Mathias Agopian63108c32013-09-06 13:36:49 -0700748 egl_connection_t* const cnx = &gEGLImpl;
749 result = setError(cnx->egl.eglGetError(), EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700750 }
751 return result;
752}
753
754
755EGLBoolean eglQueryContext( EGLDisplay dpy, EGLContext ctx,
756 EGLint attribute, EGLint *value)
757{
758 clearError();
759
Jesse Hallb29e5e82012-04-04 16:53:42 -0700760 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700761 if (!dp) return EGL_FALSE;
762
Jesse Hallb29e5e82012-04-04 16:53:42 -0700763 ContextRef _c(dp.get(), ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700764 if (!_c.get()) return setError(EGL_BAD_CONTEXT, EGL_FALSE);
765
Mathias Agopian518ec112011-05-13 16:21:08 -0700766 egl_context_t * const c = get_context(ctx);
Mathias Agopian7773c432012-02-13 20:06:08 -0800767 return c->cnx->egl.eglQueryContext(
768 dp->disp.dpy, c->context, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700769
Mathias Agopian518ec112011-05-13 16:21:08 -0700770}
771
772EGLContext eglGetCurrentContext(void)
773{
774 // could be called before eglInitialize(), but we wouldn't have a context
775 // then, and this function would correctly return EGL_NO_CONTEXT.
776
777 clearError();
778
779 EGLContext ctx = getContext();
780 return ctx;
781}
782
783EGLSurface eglGetCurrentSurface(EGLint readdraw)
784{
785 // could be called before eglInitialize(), but we wouldn't have a context
786 // then, and this function would correctly return EGL_NO_SURFACE.
787
788 clearError();
789
790 EGLContext ctx = getContext();
791 if (ctx) {
792 egl_context_t const * const c = get_context(ctx);
793 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
794 switch (readdraw) {
795 case EGL_READ: return c->read;
Jesse Hall47743382013-02-08 11:13:46 -0800796 case EGL_DRAW: return c->draw;
Mathias Agopian518ec112011-05-13 16:21:08 -0700797 default: return setError(EGL_BAD_PARAMETER, EGL_NO_SURFACE);
798 }
799 }
800 return EGL_NO_SURFACE;
801}
802
803EGLDisplay eglGetCurrentDisplay(void)
804{
805 // could be called before eglInitialize(), but we wouldn't have a context
806 // then, and this function would correctly return EGL_NO_DISPLAY.
807
808 clearError();
809
810 EGLContext ctx = getContext();
811 if (ctx) {
812 egl_context_t const * const c = get_context(ctx);
813 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
814 return c->dpy;
815 }
816 return EGL_NO_DISPLAY;
817}
818
819EGLBoolean eglWaitGL(void)
820{
Mathias Agopian518ec112011-05-13 16:21:08 -0700821 clearError();
822
Mathias Agopianada798b2012-02-13 17:09:30 -0800823 egl_connection_t* const cnx = &gEGLImpl;
824 if (!cnx->dso)
825 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
826
827 return cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -0700828}
829
830EGLBoolean eglWaitNative(EGLint engine)
831{
Mathias Agopian518ec112011-05-13 16:21:08 -0700832 clearError();
833
Mathias Agopianada798b2012-02-13 17:09:30 -0800834 egl_connection_t* const cnx = &gEGLImpl;
835 if (!cnx->dso)
836 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
837
838 return cnx->egl.eglWaitNative(engine);
Mathias Agopian518ec112011-05-13 16:21:08 -0700839}
840
841EGLint eglGetError(void)
842{
Mathias Agopianada798b2012-02-13 17:09:30 -0800843 EGLint err = EGL_SUCCESS;
844 egl_connection_t* const cnx = &gEGLImpl;
845 if (cnx->dso) {
846 err = cnx->egl.eglGetError();
Mathias Agopian518ec112011-05-13 16:21:08 -0700847 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800848 if (err == EGL_SUCCESS) {
849 err = egl_tls_t::getError();
850 }
851 return err;
Mathias Agopian518ec112011-05-13 16:21:08 -0700852}
853
Michael Chockc0ec5e22014-01-27 08:14:33 -0800854static __eglMustCastToProperFunctionPointerType findBuiltinWrapper(
Jesse Hallc07b5202013-07-04 12:08:16 -0700855 const char* procname) {
856 const egl_connection_t* cnx = &gEGLImpl;
857 void* proc = NULL;
858
Michael Chockc0ec5e22014-01-27 08:14:33 -0800859 proc = dlsym(cnx->libEgl, procname);
860 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
861
Jesse Hallc07b5202013-07-04 12:08:16 -0700862 proc = dlsym(cnx->libGles2, procname);
863 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
864
865 proc = dlsym(cnx->libGles1, procname);
866 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
867
868 return NULL;
869}
870
Mathias Agopian518ec112011-05-13 16:21:08 -0700871__eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname)
872{
873 // eglGetProcAddress() could be the very first function called
874 // in which case we must make sure we've initialized ourselves, this
875 // happens the first time egl_get_display() is called.
876
877 clearError();
878
879 if (egl_init_drivers() == EGL_FALSE) {
880 setError(EGL_BAD_PARAMETER, NULL);
881 return NULL;
882 }
883
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700884 if (FILTER_EXTENSIONS(procname)) {
Jamie Gennisaca51c02011-11-03 17:42:43 -0700885 return NULL;
886 }
887
Mathias Agopian518ec112011-05-13 16:21:08 -0700888 __eglMustCastToProperFunctionPointerType addr;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700889 addr = findProcAddress(procname, sExtensionMap, NELEM(sExtensionMap));
Mathias Agopian518ec112011-05-13 16:21:08 -0700890 if (addr) return addr;
891
Michael Chockc0ec5e22014-01-27 08:14:33 -0800892 addr = findBuiltinWrapper(procname);
Jesse Hallc07b5202013-07-04 12:08:16 -0700893 if (addr) return addr;
Jamie Gennisaca51c02011-11-03 17:42:43 -0700894
Mathias Agopian518ec112011-05-13 16:21:08 -0700895 // this protects accesses to sGLExtentionMap and sGLExtentionSlot
896 pthread_mutex_lock(&sExtensionMapMutex);
897
898 /*
899 * Since eglGetProcAddress() is not associated to anything, it needs
900 * to return a function pointer that "works" regardless of what
901 * the current context is.
902 *
903 * For this reason, we return a "forwarder", a small stub that takes
904 * care of calling the function associated with the context
905 * currently bound.
906 *
907 * We first look for extensions we've already resolved, if we're seeing
908 * this extension for the first time, we go through all our
909 * implementations and call eglGetProcAddress() and record the
910 * result in the appropriate implementation hooks and return the
911 * address of the forwarder corresponding to that hook set.
912 *
913 */
914
915 const String8 name(procname);
916 addr = sGLExtentionMap.valueFor(name);
917 const int slot = sGLExtentionSlot;
918
Steve Blocke6f43dd2012-01-06 19:20:56 +0000919 ALOGE_IF(slot >= MAX_NUMBER_OF_GL_EXTENSIONS,
Mathias Agopian518ec112011-05-13 16:21:08 -0700920 "no more slots for eglGetProcAddress(\"%s\")",
921 procname);
922
Siva Velusamy0469dd62011-11-30 15:05:37 -0800923#if EGL_TRACE
924 gl_hooks_t *debugHooks = GLTrace_getGLHooks();
925#endif
926
Mathias Agopian518ec112011-05-13 16:21:08 -0700927 if (!addr && (slot < MAX_NUMBER_OF_GL_EXTENSIONS)) {
928 bool found = false;
Mathias Agopianada798b2012-02-13 17:09:30 -0800929
930 egl_connection_t* const cnx = &gEGLImpl;
931 if (cnx->dso && cnx->egl.eglGetProcAddress) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800932 // Extensions are independent of the bound context
luliuhui69d10072012-08-30 11:15:36 +0800933 addr =
Mathias Agopian7773c432012-02-13 20:06:08 -0800934 cnx->hooks[egl_connection_t::GLESv1_INDEX]->ext.extensions[slot] =
935 cnx->hooks[egl_connection_t::GLESv2_INDEX]->ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700936#if EGL_TRACE
Mathias Agopianada798b2012-02-13 17:09:30 -0800937 debugHooks->ext.extensions[slot] =
938 gHooksTrace.ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700939#endif
Mathias Agopianada798b2012-02-13 17:09:30 -0800940 cnx->egl.eglGetProcAddress(procname);
luliuhui69d10072012-08-30 11:15:36 +0800941 if (addr) found = true;
Mathias Agopian518ec112011-05-13 16:21:08 -0700942 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800943
Mathias Agopian518ec112011-05-13 16:21:08 -0700944 if (found) {
945 addr = gExtensionForwarders[slot];
Mathias Agopian518ec112011-05-13 16:21:08 -0700946 sGLExtentionMap.add(name, addr);
947 sGLExtentionSlot++;
948 }
949 }
950
951 pthread_mutex_unlock(&sExtensionMapMutex);
952 return addr;
953}
954
Jamie Gennis28ef8d72012-04-05 20:34:54 -0700955class FrameCompletionThread : public Thread {
956public:
957
958 static void queueSync(EGLSyncKHR sync) {
959 static sp<FrameCompletionThread> thread(new FrameCompletionThread);
960 static bool running = false;
961 if (!running) {
962 thread->run("GPUFrameCompletion");
963 running = true;
964 }
965 {
966 Mutex::Autolock lock(thread->mMutex);
967 ScopedTrace st(ATRACE_TAG, String8::format("kicked off frame %d",
968 thread->mFramesQueued).string());
969 thread->mQueue.push_back(sync);
970 thread->mCondition.signal();
971 thread->mFramesQueued++;
972 ATRACE_INT("GPU Frames Outstanding", thread->mQueue.size());
973 }
974 }
975
976private:
977 FrameCompletionThread() : mFramesQueued(0), mFramesCompleted(0) {}
978
979 virtual bool threadLoop() {
980 EGLSyncKHR sync;
981 uint32_t frameNum;
982 {
983 Mutex::Autolock lock(mMutex);
984 while (mQueue.isEmpty()) {
985 mCondition.wait(mMutex);
986 }
987 sync = mQueue[0];
988 frameNum = mFramesCompleted;
989 }
990 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
991 {
992 ScopedTrace st(ATRACE_TAG, String8::format("waiting for frame %d",
993 frameNum).string());
994 EGLint result = eglClientWaitSyncKHR(dpy, sync, 0, EGL_FOREVER_KHR);
995 if (result == EGL_FALSE) {
996 ALOGE("FrameCompletion: error waiting for fence: %#x", eglGetError());
997 } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
998 ALOGE("FrameCompletion: timeout waiting for fence");
999 }
1000 eglDestroySyncKHR(dpy, sync);
1001 }
1002 {
1003 Mutex::Autolock lock(mMutex);
1004 mQueue.removeAt(0);
1005 mFramesCompleted++;
1006 ATRACE_INT("GPU Frames Outstanding", mQueue.size());
1007 }
1008 return true;
1009 }
1010
1011 uint32_t mFramesQueued;
1012 uint32_t mFramesCompleted;
1013 Vector<EGLSyncKHR> mQueue;
1014 Condition mCondition;
1015 Mutex mMutex;
1016};
1017
Mathias Agopian518ec112011-05-13 16:21:08 -07001018EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface draw)
1019{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001020 ATRACE_CALL();
Mathias Agopian518ec112011-05-13 16:21:08 -07001021 clearError();
1022
Jesse Hallb29e5e82012-04-04 16:53:42 -07001023 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001024 if (!dp) return EGL_FALSE;
1025
Jesse Hallb29e5e82012-04-04 16:53:42 -07001026 SurfaceRef _s(dp.get(), draw);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001027 if (!_s.get())
1028 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001029
Siva Velusamy0469dd62011-11-30 15:05:37 -08001030#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -08001031 gl_hooks_t const *trace_hooks = getGLTraceThreadSpecific();
1032 if (getEGLDebugLevel() > 0) {
1033 if (trace_hooks == NULL) {
1034 if (GLTrace_start() < 0) {
1035 ALOGE("Disabling Tracer for OpenGL ES");
1036 setEGLDebugLevel(0);
1037 } else {
1038 // switch over to the trace version of hooks
1039 EGLContext ctx = egl_tls_t::getContext();
1040 egl_context_t * const c = get_context(ctx);
1041 if (c) {
1042 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1043 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
1044 }
1045 }
1046 }
1047
Siva Velusamy0469dd62011-11-30 15:05:37 -08001048 GLTrace_eglSwapBuffers(dpy, draw);
Siva Velusamya73a9772012-12-18 14:56:55 -08001049 } else if (trace_hooks != NULL) {
1050 // tracing is now disabled, so switch back to the non trace version
1051 EGLContext ctx = egl_tls_t::getContext();
1052 egl_context_t * const c = get_context(ctx);
1053 if (c) setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1054 GLTrace_stop();
1055 }
Siva Velusamy0469dd62011-11-30 15:05:37 -08001056#endif
1057
Mathias Agopian518ec112011-05-13 16:21:08 -07001058 egl_surface_t const * const s = get_surface(draw);
Mathias Agopian7db993a2012-03-25 00:49:46 -07001059
Mathias Agopianed6d08b2013-04-16 16:39:46 -07001060 if (CC_UNLIKELY(dp->traceGpuCompletion)) {
1061 EGLSyncKHR sync = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL);
1062 if (sync != EGL_NO_SYNC_KHR) {
1063 FrameCompletionThread::queueSync(sync);
1064 }
1065 }
1066
Mathias Agopian7db993a2012-03-25 00:49:46 -07001067 if (CC_UNLIKELY(dp->finishOnSwap)) {
1068 uint32_t pixel;
1069 egl_context_t * const c = get_context( egl_tls_t::getContext() );
1070 if (c) {
1071 // glReadPixels() ensures that the frame is complete
1072 s->cnx->hooks[c->version]->gl.glReadPixels(0,0,1,1,
1073 GL_RGBA,GL_UNSIGNED_BYTE,&pixel);
1074 }
1075 }
1076
Mathias Agopianed6d08b2013-04-16 16:39:46 -07001077 return s->cnx->egl.eglSwapBuffers(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001078}
1079
1080EGLBoolean eglCopyBuffers( EGLDisplay dpy, EGLSurface surface,
1081 NativePixmapType target)
1082{
1083 clearError();
1084
Jesse Hallb29e5e82012-04-04 16:53:42 -07001085 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001086 if (!dp) return EGL_FALSE;
1087
Jesse Hallb29e5e82012-04-04 16:53:42 -07001088 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001089 if (!_s.get())
1090 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001091
Mathias Agopian518ec112011-05-13 16:21:08 -07001092 egl_surface_t const * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -08001093 return s->cnx->egl.eglCopyBuffers(dp->disp.dpy, s->surface, target);
Mathias Agopian518ec112011-05-13 16:21:08 -07001094}
1095
1096const char* eglQueryString(EGLDisplay dpy, EGLint name)
1097{
1098 clearError();
1099
Jesse Hallb29e5e82012-04-04 16:53:42 -07001100 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001101 if (!dp) return (const char *) NULL;
1102
1103 switch (name) {
1104 case EGL_VENDOR:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001105 return dp->getVendorString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001106 case EGL_VERSION:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001107 return dp->getVersionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001108 case EGL_EXTENSIONS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001109 return dp->getExtensionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001110 case EGL_CLIENT_APIS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001111 return dp->getClientApiString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001112 }
1113 return setError(EGL_BAD_PARAMETER, (const char *)0);
1114}
1115
Mathias Agopianca088332013-03-28 17:44:13 -07001116EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name)
1117{
1118 clearError();
1119
1120 const egl_display_ptr dp = validate_display(dpy);
1121 if (!dp) return (const char *) NULL;
1122
1123 switch (name) {
1124 case EGL_VENDOR:
1125 return dp->disp.queryString.vendor;
1126 case EGL_VERSION:
1127 return dp->disp.queryString.version;
1128 case EGL_EXTENSIONS:
1129 return dp->disp.queryString.extensions;
1130 case EGL_CLIENT_APIS:
1131 return dp->disp.queryString.clientApi;
1132 }
1133 return setError(EGL_BAD_PARAMETER, (const char *)0);
1134}
Mathias Agopian518ec112011-05-13 16:21:08 -07001135
1136// ----------------------------------------------------------------------------
1137// EGL 1.1
1138// ----------------------------------------------------------------------------
1139
1140EGLBoolean eglSurfaceAttrib(
1141 EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
1142{
1143 clearError();
1144
Jesse Hallb29e5e82012-04-04 16:53:42 -07001145 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001146 if (!dp) return EGL_FALSE;
1147
Jesse Hallb29e5e82012-04-04 16:53:42 -07001148 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001149 if (!_s.get())
1150 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001151
Mathias Agopian518ec112011-05-13 16:21:08 -07001152 egl_surface_t const * const s = get_surface(surface);
1153 if (s->cnx->egl.eglSurfaceAttrib) {
1154 return s->cnx->egl.eglSurfaceAttrib(
Mathias Agopianada798b2012-02-13 17:09:30 -08001155 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001156 }
1157 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1158}
1159
1160EGLBoolean eglBindTexImage(
1161 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1162{
1163 clearError();
1164
Jesse Hallb29e5e82012-04-04 16:53:42 -07001165 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001166 if (!dp) return EGL_FALSE;
1167
Jesse Hallb29e5e82012-04-04 16:53:42 -07001168 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001169 if (!_s.get())
1170 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001171
Mathias Agopian518ec112011-05-13 16:21:08 -07001172 egl_surface_t const * const s = get_surface(surface);
1173 if (s->cnx->egl.eglBindTexImage) {
1174 return s->cnx->egl.eglBindTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001175 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001176 }
1177 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1178}
1179
1180EGLBoolean eglReleaseTexImage(
1181 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1182{
1183 clearError();
1184
Jesse Hallb29e5e82012-04-04 16:53:42 -07001185 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001186 if (!dp) return EGL_FALSE;
1187
Jesse Hallb29e5e82012-04-04 16:53:42 -07001188 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001189 if (!_s.get())
1190 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001191
Mathias Agopian518ec112011-05-13 16:21:08 -07001192 egl_surface_t const * const s = get_surface(surface);
1193 if (s->cnx->egl.eglReleaseTexImage) {
1194 return s->cnx->egl.eglReleaseTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001195 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001196 }
1197 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1198}
1199
1200EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
1201{
1202 clearError();
1203
Jesse Hallb29e5e82012-04-04 16:53:42 -07001204 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001205 if (!dp) return EGL_FALSE;
1206
1207 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001208 egl_connection_t* const cnx = &gEGLImpl;
1209 if (cnx->dso && cnx->egl.eglSwapInterval) {
1210 res = cnx->egl.eglSwapInterval(dp->disp.dpy, interval);
Mathias Agopian518ec112011-05-13 16:21:08 -07001211 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001212
Mathias Agopian518ec112011-05-13 16:21:08 -07001213 return res;
1214}
1215
1216
1217// ----------------------------------------------------------------------------
1218// EGL 1.2
1219// ----------------------------------------------------------------------------
1220
1221EGLBoolean eglWaitClient(void)
1222{
1223 clearError();
1224
Mathias Agopianada798b2012-02-13 17:09:30 -08001225 egl_connection_t* const cnx = &gEGLImpl;
1226 if (!cnx->dso)
1227 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
1228
1229 EGLBoolean res;
1230 if (cnx->egl.eglWaitClient) {
1231 res = cnx->egl.eglWaitClient();
1232 } else {
1233 res = cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -07001234 }
1235 return res;
1236}
1237
1238EGLBoolean eglBindAPI(EGLenum api)
1239{
1240 clearError();
1241
1242 if (egl_init_drivers() == EGL_FALSE) {
1243 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1244 }
1245
1246 // bind this API on all EGLs
1247 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001248 egl_connection_t* const cnx = &gEGLImpl;
1249 if (cnx->dso && cnx->egl.eglBindAPI) {
1250 res = cnx->egl.eglBindAPI(api);
Mathias Agopian518ec112011-05-13 16:21:08 -07001251 }
1252 return res;
1253}
1254
1255EGLenum eglQueryAPI(void)
1256{
1257 clearError();
1258
1259 if (egl_init_drivers() == EGL_FALSE) {
1260 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1261 }
1262
Mathias Agopianada798b2012-02-13 17:09:30 -08001263 egl_connection_t* const cnx = &gEGLImpl;
1264 if (cnx->dso && cnx->egl.eglQueryAPI) {
1265 return cnx->egl.eglQueryAPI();
Mathias Agopian518ec112011-05-13 16:21:08 -07001266 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001267
Mathias Agopian518ec112011-05-13 16:21:08 -07001268 // or, it can only be OpenGL ES
1269 return EGL_OPENGL_ES_API;
1270}
1271
1272EGLBoolean eglReleaseThread(void)
1273{
1274 clearError();
1275
Mathias Agopian4e620dd2013-05-30 16:07:36 -07001276#if EGL_TRACE
1277 if (getEGLDebugLevel() > 0)
1278 GLTrace_eglReleaseThread();
1279#endif
1280
Mathias Agopian518ec112011-05-13 16:21:08 -07001281 // If there is context bound to the thread, release it
Mathias Agopianfb87e542012-01-30 18:20:52 -08001282 egl_display_t::loseCurrent(get_context(getContext()));
Mathias Agopian518ec112011-05-13 16:21:08 -07001283
Mathias Agopianada798b2012-02-13 17:09:30 -08001284 egl_connection_t* const cnx = &gEGLImpl;
1285 if (cnx->dso && cnx->egl.eglReleaseThread) {
1286 cnx->egl.eglReleaseThread();
Mathias Agopian518ec112011-05-13 16:21:08 -07001287 }
1288 egl_tls_t::clearTLS();
Mathias Agopian518ec112011-05-13 16:21:08 -07001289 return EGL_TRUE;
1290}
1291
1292EGLSurface eglCreatePbufferFromClientBuffer(
1293 EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer,
1294 EGLConfig config, const EGLint *attrib_list)
1295{
1296 clearError();
1297
Jesse Hallb29e5e82012-04-04 16:53:42 -07001298 egl_connection_t* cnx = NULL;
1299 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
1300 if (!dp) return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -07001301 if (cnx->egl.eglCreatePbufferFromClientBuffer) {
1302 return cnx->egl.eglCreatePbufferFromClientBuffer(
Mathias Agopian7773c432012-02-13 20:06:08 -08001303 dp->disp.dpy, buftype, buffer, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001304 }
1305 return setError(EGL_BAD_CONFIG, EGL_NO_SURFACE);
1306}
1307
1308// ----------------------------------------------------------------------------
1309// EGL_EGLEXT_VERSION 3
1310// ----------------------------------------------------------------------------
1311
1312EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface,
1313 const EGLint *attrib_list)
1314{
1315 clearError();
1316
Jesse Hallb29e5e82012-04-04 16:53:42 -07001317 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001318 if (!dp) return EGL_FALSE;
1319
Jesse Hallb29e5e82012-04-04 16:53:42 -07001320 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001321 if (!_s.get())
1322 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001323
1324 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001325 if (s->cnx->egl.eglLockSurfaceKHR) {
1326 return s->cnx->egl.eglLockSurfaceKHR(
Mathias Agopianada798b2012-02-13 17:09:30 -08001327 dp->disp.dpy, s->surface, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001328 }
1329 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1330}
1331
1332EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface)
1333{
1334 clearError();
1335
Jesse Hallb29e5e82012-04-04 16:53:42 -07001336 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001337 if (!dp) return EGL_FALSE;
1338
Jesse Hallb29e5e82012-04-04 16:53:42 -07001339 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001340 if (!_s.get())
1341 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001342
1343 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001344 if (s->cnx->egl.eglUnlockSurfaceKHR) {
Mathias Agopianada798b2012-02-13 17:09:30 -08001345 return s->cnx->egl.eglUnlockSurfaceKHR(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001346 }
1347 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1348}
1349
1350EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1351 EGLClientBuffer buffer, const EGLint *attrib_list)
1352{
1353 clearError();
1354
Jesse Hallb29e5e82012-04-04 16:53:42 -07001355 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001356 if (!dp) return EGL_NO_IMAGE_KHR;
1357
Jesse Hallb29e5e82012-04-04 16:53:42 -07001358 ContextRef _c(dp.get(), ctx);
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001359 egl_context_t * const c = _c.get();
Mathias Agopian518ec112011-05-13 16:21:08 -07001360
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001361 EGLImageKHR result = EGL_NO_IMAGE_KHR;
1362 egl_connection_t* const cnx = &gEGLImpl;
1363 if (cnx->dso && cnx->egl.eglCreateImageKHR) {
1364 result = cnx->egl.eglCreateImageKHR(
1365 dp->disp.dpy,
1366 c ? c->context : EGL_NO_CONTEXT,
1367 target, buffer, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001368 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001369 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001370}
1371
1372EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img)
1373{
1374 clearError();
1375
Jesse Hallb29e5e82012-04-04 16:53:42 -07001376 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001377 if (!dp) return EGL_FALSE;
1378
Steven Holte646a5c52012-06-04 20:02:11 -07001379 EGLBoolean result = EGL_FALSE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001380 egl_connection_t* const cnx = &gEGLImpl;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001381 if (cnx->dso && cnx->egl.eglDestroyImageKHR) {
Steven Holte646a5c52012-06-04 20:02:11 -07001382 result = cnx->egl.eglDestroyImageKHR(dp->disp.dpy, img);
Mathias Agopian518ec112011-05-13 16:21:08 -07001383 }
Steven Holte646a5c52012-06-04 20:02:11 -07001384 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001385}
1386
1387// ----------------------------------------------------------------------------
1388// EGL_EGLEXT_VERSION 5
1389// ----------------------------------------------------------------------------
1390
1391
1392EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list)
1393{
1394 clearError();
1395
Jesse Hallb29e5e82012-04-04 16:53:42 -07001396 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001397 if (!dp) return EGL_NO_SYNC_KHR;
1398
Mathias Agopian518ec112011-05-13 16:21:08 -07001399 EGLSyncKHR result = EGL_NO_SYNC_KHR;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001400 egl_connection_t* const cnx = &gEGLImpl;
1401 if (cnx->dso && cnx->egl.eglCreateSyncKHR) {
1402 result = cnx->egl.eglCreateSyncKHR(dp->disp.dpy, type, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001403 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001404 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001405}
1406
1407EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync)
1408{
1409 clearError();
1410
Jesse Hallb29e5e82012-04-04 16:53:42 -07001411 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001412 if (!dp) return EGL_FALSE;
1413
Mathias Agopian518ec112011-05-13 16:21:08 -07001414 EGLBoolean result = EGL_FALSE;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001415 egl_connection_t* const cnx = &gEGLImpl;
1416 if (cnx->dso && cnx->egl.eglDestroySyncKHR) {
1417 result = cnx->egl.eglDestroySyncKHR(dp->disp.dpy, sync);
Mathias Agopian518ec112011-05-13 16:21:08 -07001418 }
1419 return result;
1420}
1421
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -07001422EGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) {
1423 clearError();
1424
1425 const egl_display_ptr dp = validate_display(dpy);
1426 if (!dp) return EGL_FALSE;
1427
1428 EGLBoolean result = EGL_FALSE;
1429 egl_connection_t* const cnx = &gEGLImpl;
1430 if (cnx->dso && cnx->egl.eglSignalSyncKHR) {
1431 result = cnx->egl.eglSignalSyncKHR(
1432 dp->disp.dpy, sync, mode);
1433 }
1434 return result;
1435}
1436
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001437EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync,
1438 EGLint flags, EGLTimeKHR timeout)
Mathias Agopian518ec112011-05-13 16:21:08 -07001439{
1440 clearError();
1441
Jesse Hallb29e5e82012-04-04 16:53:42 -07001442 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001443 if (!dp) return EGL_FALSE;
1444
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001445 EGLBoolean result = EGL_FALSE;
1446 egl_connection_t* const cnx = &gEGLImpl;
1447 if (cnx->dso && cnx->egl.eglClientWaitSyncKHR) {
1448 result = cnx->egl.eglClientWaitSyncKHR(
1449 dp->disp.dpy, sync, flags, timeout);
Mathias Agopian518ec112011-05-13 16:21:08 -07001450 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001451 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001452}
1453
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001454EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync,
1455 EGLint attribute, EGLint *value)
Mathias Agopian518ec112011-05-13 16:21:08 -07001456{
1457 clearError();
1458
Jesse Hallb29e5e82012-04-04 16:53:42 -07001459 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001460 if (!dp) return EGL_FALSE;
1461
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001462 EGLBoolean result = EGL_FALSE;
1463 egl_connection_t* const cnx = &gEGLImpl;
1464 if (cnx->dso && cnx->egl.eglGetSyncAttribKHR) {
1465 result = cnx->egl.eglGetSyncAttribKHR(
1466 dp->disp.dpy, sync, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001467 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001468 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001469}
1470
1471// ----------------------------------------------------------------------------
Mathias Agopian2bb71682013-03-27 17:32:41 -07001472// EGL_EGLEXT_VERSION 15
1473// ----------------------------------------------------------------------------
1474
1475EGLint eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) {
1476 clearError();
1477 const egl_display_ptr dp = validate_display(dpy);
1478 if (!dp) return EGL_FALSE;
1479 EGLint result = EGL_FALSE;
1480 egl_connection_t* const cnx = &gEGLImpl;
1481 if (cnx->dso && cnx->egl.eglWaitSyncKHR) {
1482 result = cnx->egl.eglWaitSyncKHR(dp->disp.dpy, sync, flags);
1483 }
1484 return result;
1485}
1486
1487// ----------------------------------------------------------------------------
Mathias Agopian518ec112011-05-13 16:21:08 -07001488// ANDROID extensions
1489// ----------------------------------------------------------------------------
1490
Jamie Gennis331841b2012-09-06 14:52:00 -07001491EGLint eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync)
1492{
1493 clearError();
1494
1495 const egl_display_ptr dp = validate_display(dpy);
1496 if (!dp) return EGL_NO_NATIVE_FENCE_FD_ANDROID;
1497
1498 EGLint result = EGL_NO_NATIVE_FENCE_FD_ANDROID;
1499 egl_connection_t* const cnx = &gEGLImpl;
1500 if (cnx->dso && cnx->egl.eglDupNativeFenceFDANDROID) {
1501 result = cnx->egl.eglDupNativeFenceFDANDROID(dp->disp.dpy, sync);
1502 }
1503 return result;
1504}
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001505
Andy McFadden72841452013-03-01 16:25:32 -08001506EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface,
1507 EGLnsecsANDROID time)
1508{
1509 clearError();
1510
1511 const egl_display_ptr dp = validate_display(dpy);
1512 if (!dp) {
1513 return EGL_FALSE;
1514 }
1515
1516 SurfaceRef _s(dp.get(), surface);
1517 if (!_s.get()) {
1518 setError(EGL_BAD_SURFACE, EGL_FALSE);
1519 return EGL_FALSE;
1520 }
1521
1522 egl_surface_t const * const s = get_surface(surface);
1523 native_window_set_buffers_timestamp(s->win.get(), time);
1524
1525 return EGL_TRUE;
1526}
1527
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001528// ----------------------------------------------------------------------------
1529// NVIDIA extensions
1530// ----------------------------------------------------------------------------
1531EGLuint64NV eglGetSystemTimeFrequencyNV()
1532{
1533 clearError();
1534
1535 if (egl_init_drivers() == EGL_FALSE) {
1536 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1537 }
1538
1539 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001540 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001541
Mathias Agopianada798b2012-02-13 17:09:30 -08001542 if (cnx->dso && cnx->egl.eglGetSystemTimeFrequencyNV) {
1543 return cnx->egl.eglGetSystemTimeFrequencyNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001544 }
1545
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001546 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001547}
1548
1549EGLuint64NV eglGetSystemTimeNV()
1550{
1551 clearError();
1552
1553 if (egl_init_drivers() == EGL_FALSE) {
1554 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1555 }
1556
1557 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001558 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001559
Mathias Agopianada798b2012-02-13 17:09:30 -08001560 if (cnx->dso && cnx->egl.eglGetSystemTimeNV) {
1561 return cnx->egl.eglGetSystemTimeNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001562 }
1563
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001564 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001565}