blob: a243b3267001c55c1fb5d4d70b11dfa31f2833ef [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
52// ----------------------------------------------------------------------------
53
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070054namespace android {
55
Mathias Agopian518ec112011-05-13 16:21:08 -070056struct extention_map_t {
57 const char* name;
58 __eglMustCastToProperFunctionPointerType address;
59};
60
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070061/*
62 * This is the list of EGL extensions exposed to applications,
63 * some of them are mandatory because used by the ANDROID system.
64 *
65 * Mandatory extensions are required per the CDD and not explicitly
66 * checked during EGL initialization. the system *assumes* these extensions
67 * are present. the system may not function properly if some mandatory
68 * extensions are missing.
69 *
70 * NOTE: gExtensionString MUST have a single space as the last character.
71 */
72extern char const * const gExtensionString =
73 "EGL_KHR_image " // mandatory
74 "EGL_KHR_image_base " // mandatory
75 "EGL_KHR_image_pixmap "
76 "EGL_KHR_lock_surface "
77 "EGL_KHR_gl_texture_2D_image "
78 "EGL_KHR_gl_texture_cubemap_image "
79 "EGL_KHR_gl_renderbuffer_image "
80 "EGL_KHR_reusable_sync "
81 "EGL_KHR_fence_sync "
Jamie Gennisf6d1c392013-04-25 18:48:41 -070082 "EGL_KHR_create_context "
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070083 "EGL_EXT_create_context_robustness "
84 "EGL_NV_system_time "
85 "EGL_ANDROID_image_native_buffer " // mandatory
Mathias Agopian2bb71682013-03-27 17:32:41 -070086 "EGL_KHR_wait_sync " // strongly recommended
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070087 "EGL_ANDROID_presentation_time "
88 ;
89
90// extensions not exposed to applications but used by the ANDROID system
91// "EGL_ANDROID_blob_cache " // strongly recommended
92// "EGL_IMG_hibernate_process " // optional
93// "EGL_ANDROID_native_fence_sync " // strongly recommended
94// "EGL_ANDROID_framebuffer_target " // mandatory for HWC 1.1
95// "EGL_ANDROID_recordable " // mandatory
96
97
98/*
99 * EGL Extensions entry-points exposed to 3rd party applications
100 * (keep in sync with gExtensionString above)
101 *
102 */
103static const extention_map_t sExtensionMap[] = {
104 // EGL_KHR_lock_surface
Mathias Agopian518ec112011-05-13 16:21:08 -0700105 { "eglLockSurfaceKHR",
106 (__eglMustCastToProperFunctionPointerType)&eglLockSurfaceKHR },
107 { "eglUnlockSurfaceKHR",
108 (__eglMustCastToProperFunctionPointerType)&eglUnlockSurfaceKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700109
110 // EGL_KHR_image, EGL_KHR_image_base
Mathias Agopian518ec112011-05-13 16:21:08 -0700111 { "eglCreateImageKHR",
112 (__eglMustCastToProperFunctionPointerType)&eglCreateImageKHR },
113 { "eglDestroyImageKHR",
114 (__eglMustCastToProperFunctionPointerType)&eglDestroyImageKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700115
116 // EGL_KHR_reusable_sync, EGL_KHR_fence_sync
117 { "eglCreateSyncKHR",
118 (__eglMustCastToProperFunctionPointerType)&eglCreateSyncKHR },
119 { "eglDestroySyncKHR",
120 (__eglMustCastToProperFunctionPointerType)&eglDestroySyncKHR },
121 { "eglClientWaitSyncKHR",
122 (__eglMustCastToProperFunctionPointerType)&eglClientWaitSyncKHR },
123 { "eglSignalSyncKHR",
124 (__eglMustCastToProperFunctionPointerType)&eglSignalSyncKHR },
125 { "eglGetSyncAttribKHR",
126 (__eglMustCastToProperFunctionPointerType)&eglGetSyncAttribKHR },
127
128 // EGL_NV_system_time
Jonas Yang1c3d72a2011-08-26 20:04:39 +0800129 { "eglGetSystemTimeFrequencyNV",
130 (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeFrequencyNV },
131 { "eglGetSystemTimeNV",
132 (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeNV },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700133
Mathias Agopian2bb71682013-03-27 17:32:41 -0700134 // EGL_KHR_wait_sync
135 { "eglWaitSyncKHR",
136 (__eglMustCastToProperFunctionPointerType)&eglWaitSyncKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700137
138 // EGL_ANDROID_presentation_time
139 { "eglPresentationTimeANDROID",
140 (__eglMustCastToProperFunctionPointerType)&eglPresentationTimeANDROID },
Mathias Agopian518ec112011-05-13 16:21:08 -0700141};
142
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700143/*
144 * These extensions entry-points should not be exposed to applications.
145 * They're used internally by the Android EGL layer.
146 */
147#define FILTER_EXTENSIONS(procname) \
148 (!strcmp((procname), "eglSetBlobCacheFuncsANDROID") || \
149 !strcmp((procname), "eglHibernateProcessIMG") || \
150 !strcmp((procname), "eglAwakenProcessIMG") || \
151 !strcmp((procname), "eglDupNativeFenceFDANDROID"))
152
153
154
Mathias Agopian518ec112011-05-13 16:21:08 -0700155// accesses protected by sExtensionMapMutex
156static DefaultKeyedVector<String8, __eglMustCastToProperFunctionPointerType> sGLExtentionMap;
157static int sGLExtentionSlot = 0;
158static pthread_mutex_t sExtensionMapMutex = PTHREAD_MUTEX_INITIALIZER;
159
160static void(*findProcAddress(const char* name,
161 const extention_map_t* map, size_t n))() {
162 for (uint32_t i=0 ; i<n ; i++) {
163 if (!strcmp(name, map[i].name)) {
164 return map[i].address;
165 }
166 }
167 return NULL;
168}
169
170// ----------------------------------------------------------------------------
171
Mathias Agopian518ec112011-05-13 16:21:08 -0700172extern void setGLHooksThreadSpecific(gl_hooks_t const *value);
173extern EGLBoolean egl_init_drivers();
174extern const __eglMustCastToProperFunctionPointerType gExtensionForwarders[MAX_NUMBER_OF_GL_EXTENSIONS];
Siva Velusamya73a9772012-12-18 14:56:55 -0800175extern int getEGLDebugLevel();
176extern void setEGLDebugLevel(int level);
Mathias Agopian518ec112011-05-13 16:21:08 -0700177extern gl_hooks_t gHooksTrace;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700178
Mathias Agopian518ec112011-05-13 16:21:08 -0700179} // namespace android;
180
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700181
Mathias Agopian518ec112011-05-13 16:21:08 -0700182// ----------------------------------------------------------------------------
183
184static inline void clearError() { egl_tls_t::clearError(); }
185static inline EGLContext getContext() { return egl_tls_t::getContext(); }
186
187// ----------------------------------------------------------------------------
188
189EGLDisplay eglGetDisplay(EGLNativeDisplayType display)
190{
191 clearError();
192
193 uint32_t index = uint32_t(display);
194 if (index >= NUM_DISPLAYS) {
195 return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
196 }
197
198 if (egl_init_drivers() == EGL_FALSE) {
199 return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
200 }
201
202 EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display);
203 return dpy;
204}
205
206// ----------------------------------------------------------------------------
207// Initialization
208// ----------------------------------------------------------------------------
209
210EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
211{
212 clearError();
213
Jesse Hallb29e5e82012-04-04 16:53:42 -0700214 egl_display_ptr dp = get_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700215 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
216
217 EGLBoolean res = dp->initialize(major, minor);
218
219 return res;
220}
221
222EGLBoolean eglTerminate(EGLDisplay dpy)
223{
224 // NOTE: don't unload the drivers b/c some APIs can be called
225 // after eglTerminate() has been called. eglTerminate() only
226 // terminates an EGLDisplay, not a EGL itself.
227
228 clearError();
229
Jesse Hallb29e5e82012-04-04 16:53:42 -0700230 egl_display_ptr dp = get_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700231 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
232
233 EGLBoolean res = dp->terminate();
Jesse Hall47743382013-02-08 11:13:46 -0800234
Mathias Agopian518ec112011-05-13 16:21:08 -0700235 return res;
236}
237
238// ----------------------------------------------------------------------------
239// configuration
240// ----------------------------------------------------------------------------
241
242EGLBoolean eglGetConfigs( EGLDisplay dpy,
243 EGLConfig *configs,
244 EGLint config_size, EGLint *num_config)
245{
246 clearError();
247
Jesse Hallb29e5e82012-04-04 16:53:42 -0700248 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700249 if (!dp) return EGL_FALSE;
250
Mathias Agopian7773c432012-02-13 20:06:08 -0800251 if (num_config==0) {
252 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700253 }
254
Mathias Agopian7773c432012-02-13 20:06:08 -0800255 EGLBoolean res = EGL_FALSE;
256 *num_config = 0;
257
258 egl_connection_t* const cnx = &gEGLImpl;
259 if (cnx->dso) {
260 res = cnx->egl.eglGetConfigs(
261 dp->disp.dpy, configs, config_size, num_config);
Mathias Agopian518ec112011-05-13 16:21:08 -0700262 }
Mathias Agopian7773c432012-02-13 20:06:08 -0800263
264 return res;
Mathias Agopian518ec112011-05-13 16:21:08 -0700265}
266
267EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list,
268 EGLConfig *configs, EGLint config_size,
269 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
276 if (num_config==0) {
277 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
278 }
279
Mathias Agopian518ec112011-05-13 16:21:08 -0700280 EGLBoolean res = EGL_FALSE;
281 *num_config = 0;
282
Mathias Agopianada798b2012-02-13 17:09:30 -0800283 egl_connection_t* const cnx = &gEGLImpl;
284 if (cnx->dso) {
Romain Guy1cffc802012-10-15 18:13:05 -0700285 if (attrib_list) {
286 char value[PROPERTY_VALUE_MAX];
287 property_get("debug.egl.force_msaa", value, "false");
288
289 if (!strcmp(value, "true")) {
290 size_t attribCount = 0;
291 EGLint attrib = attrib_list[0];
292
293 // Only enable MSAA if the context is OpenGL ES 2.0 and
Romain Guybe3c3e42012-10-15 19:25:18 -0700294 // if no caveat is requested
Romain Guy1cffc802012-10-15 18:13:05 -0700295 const EGLint *attribRendererable = NULL;
296 const EGLint *attribCaveat = NULL;
297
298 // Count the number of attributes and look for
Romain Guybe3c3e42012-10-15 19:25:18 -0700299 // EGL_RENDERABLE_TYPE and EGL_CONFIG_CAVEAT
Romain Guy1cffc802012-10-15 18:13:05 -0700300 while (attrib != EGL_NONE) {
301 attrib = attrib_list[attribCount];
302 switch (attrib) {
303 case EGL_RENDERABLE_TYPE:
304 attribRendererable = &attrib_list[attribCount];
305 break;
306 case EGL_CONFIG_CAVEAT:
307 attribCaveat = &attrib_list[attribCount];
308 break;
309 }
310 attribCount++;
311 }
312
313 if (attribRendererable && attribRendererable[1] == EGL_OPENGL_ES2_BIT &&
314 (!attribCaveat || attribCaveat[1] != EGL_NONE)) {
Jesse Hall47743382013-02-08 11:13:46 -0800315
Romain Guy1cffc802012-10-15 18:13:05 -0700316 // Insert 2 extra attributes to force-enable MSAA 4x
317 EGLint aaAttribs[attribCount + 4];
318 aaAttribs[0] = EGL_SAMPLE_BUFFERS;
319 aaAttribs[1] = 1;
320 aaAttribs[2] = EGL_SAMPLES;
321 aaAttribs[3] = 4;
322
323 memcpy(&aaAttribs[4], attrib_list, attribCount * sizeof(EGLint));
324
325 EGLint numConfigAA;
326 EGLBoolean resAA = cnx->egl.eglChooseConfig(
327 dp->disp.dpy, aaAttribs, configs, config_size, &numConfigAA);
328
329 if (resAA == EGL_TRUE && numConfigAA > 0) {
330 ALOGD("Enabling MSAA 4x");
331 *num_config = numConfigAA;
332 return resAA;
333 }
334 }
335 }
336 }
337
Mathias Agopian7773c432012-02-13 20:06:08 -0800338 res = cnx->egl.eglChooseConfig(
339 dp->disp.dpy, attrib_list, configs, config_size, num_config);
Mathias Agopian518ec112011-05-13 16:21:08 -0700340 }
341 return res;
342}
343
344EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,
345 EGLint attribute, EGLint *value)
346{
347 clearError();
348
Jesse Hallb29e5e82012-04-04 16:53:42 -0700349 egl_connection_t* cnx = NULL;
350 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
351 if (!dp) return EGL_FALSE;
Jesse Hall47743382013-02-08 11:13:46 -0800352
Mathias Agopian518ec112011-05-13 16:21:08 -0700353 return cnx->egl.eglGetConfigAttrib(
Mathias Agopian7773c432012-02-13 20:06:08 -0800354 dp->disp.dpy, config, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700355}
356
357// ----------------------------------------------------------------------------
358// surfaces
359// ----------------------------------------------------------------------------
360
361EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
362 NativeWindowType window,
363 const EGLint *attrib_list)
364{
365 clearError();
366
Jesse Hallb29e5e82012-04-04 16:53:42 -0700367 egl_connection_t* cnx = NULL;
368 egl_display_ptr dp = validate_display_connection(dpy, cnx);
369 if (dp) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800370 EGLDisplay iDpy = dp->disp.dpy;
Mathias Agopian518ec112011-05-13 16:21:08 -0700371 EGLint format;
372
Mathias Agopian81a63352011-07-29 17:55:48 -0700373 if (native_window_api_connect(window, NATIVE_WINDOW_API_EGL) != OK) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000374 ALOGE("EGLNativeWindowType %p already connected to another API",
Mathias Agopian81a63352011-07-29 17:55:48 -0700375 window);
376 return setError(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
377 }
378
Mathias Agopian518ec112011-05-13 16:21:08 -0700379 // set the native window's buffers format to match this config
380 if (cnx->egl.eglGetConfigAttrib(iDpy,
Mathias Agopian7773c432012-02-13 20:06:08 -0800381 config, EGL_NATIVE_VISUAL_ID, &format)) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700382 if (format != 0) {
Jamie Gennisbee205f2011-07-01 13:12:07 -0700383 int err = native_window_set_buffers_format(window, format);
384 if (err != 0) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000385 ALOGE("error setting native window pixel format: %s (%d)",
Jamie Gennisbee205f2011-07-01 13:12:07 -0700386 strerror(-err), err);
Mathias Agopian81a63352011-07-29 17:55:48 -0700387 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
Jamie Gennisbee205f2011-07-01 13:12:07 -0700388 return setError(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
389 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700390 }
391 }
392
Jamie Gennis59769462011-11-19 18:04:43 -0800393 // the EGL spec requires that a new EGLSurface default to swap interval
394 // 1, so explicitly set that on the window here.
395 ANativeWindow* anw = reinterpret_cast<ANativeWindow*>(window);
396 anw->setSwapInterval(anw, 1);
397
Mathias Agopian518ec112011-05-13 16:21:08 -0700398 EGLSurface surface = cnx->egl.eglCreateWindowSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800399 iDpy, config, window, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700400 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700401 egl_surface_t* s = new egl_surface_t(dp.get(), config, window,
402 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700403 return s;
404 }
Mathias Agopian81a63352011-07-29 17:55:48 -0700405
406 // EGLSurface creation failed
407 native_window_set_buffers_format(window, 0);
408 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
Mathias Agopian518ec112011-05-13 16:21:08 -0700409 }
410 return EGL_NO_SURFACE;
411}
412
413EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config,
414 NativePixmapType pixmap,
415 const EGLint *attrib_list)
416{
417 clearError();
418
Jesse Hallb29e5e82012-04-04 16:53:42 -0700419 egl_connection_t* cnx = NULL;
420 egl_display_ptr dp = validate_display_connection(dpy, cnx);
421 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700422 EGLSurface surface = cnx->egl.eglCreatePixmapSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800423 dp->disp.dpy, config, pixmap, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700424 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700425 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
426 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700427 return s;
428 }
429 }
430 return EGL_NO_SURFACE;
431}
432
433EGLSurface eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config,
434 const EGLint *attrib_list)
435{
436 clearError();
437
Jesse Hallb29e5e82012-04-04 16:53:42 -0700438 egl_connection_t* cnx = NULL;
439 egl_display_ptr dp = validate_display_connection(dpy, cnx);
440 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700441 EGLSurface surface = cnx->egl.eglCreatePbufferSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800442 dp->disp.dpy, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700443 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700444 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
445 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700446 return s;
447 }
448 }
449 return EGL_NO_SURFACE;
450}
Jesse Hall47743382013-02-08 11:13:46 -0800451
Mathias Agopian518ec112011-05-13 16:21:08 -0700452EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
453{
454 clearError();
455
Jesse Hallb29e5e82012-04-04 16:53:42 -0700456 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700457 if (!dp) return EGL_FALSE;
458
Jesse Hallb29e5e82012-04-04 16:53:42 -0700459 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700460 if (!_s.get())
461 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700462
463 egl_surface_t * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -0800464 EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -0700465 if (result == EGL_TRUE) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700466 _s.terminate();
467 }
468 return result;
469}
470
471EGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surface,
472 EGLint attribute, EGLint *value)
473{
474 clearError();
475
Jesse Hallb29e5e82012-04-04 16:53:42 -0700476 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700477 if (!dp) return EGL_FALSE;
478
Jesse Hallb29e5e82012-04-04 16:53:42 -0700479 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700480 if (!_s.get())
481 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700482
Mathias Agopian518ec112011-05-13 16:21:08 -0700483 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian7773c432012-02-13 20:06:08 -0800484 return s->cnx->egl.eglQuerySurface(
485 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700486}
487
Jamie Gennise8696a42012-01-15 18:54:57 -0800488void EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800489 ATRACE_CALL();
Jamie Gennise8696a42012-01-15 18:54:57 -0800490 clearError();
491
Jesse Hallb29e5e82012-04-04 16:53:42 -0700492 const egl_display_ptr dp = validate_display(dpy);
Jamie Gennise8696a42012-01-15 18:54:57 -0800493 if (!dp) {
494 return;
495 }
496
Jesse Hallb29e5e82012-04-04 16:53:42 -0700497 SurfaceRef _s(dp.get(), surface);
Jamie Gennise8696a42012-01-15 18:54:57 -0800498 if (!_s.get()) {
499 setError(EGL_BAD_SURFACE, EGL_FALSE);
500 return;
501 }
502
503 int64_t timestamp = systemTime(SYSTEM_TIME_MONOTONIC);
504
505 egl_surface_t const * const s = get_surface(surface);
506 native_window_set_buffers_timestamp(s->win.get(), timestamp);
507}
508
Mathias Agopian518ec112011-05-13 16:21:08 -0700509// ----------------------------------------------------------------------------
510// Contexts
511// ----------------------------------------------------------------------------
512
513EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config,
514 EGLContext share_list, const EGLint *attrib_list)
515{
516 clearError();
517
Jesse Hallb29e5e82012-04-04 16:53:42 -0700518 egl_connection_t* cnx = NULL;
519 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
520 if (dpy) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700521 if (share_list != EGL_NO_CONTEXT) {
522 egl_context_t* const c = get_context(share_list);
523 share_list = c->context;
524 }
525 EGLContext context = cnx->egl.eglCreateContext(
Mathias Agopian7773c432012-02-13 20:06:08 -0800526 dp->disp.dpy, config, share_list, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700527 if (context != EGL_NO_CONTEXT) {
528 // figure out if it's a GLESv1 or GLESv2
529 int version = 0;
530 if (attrib_list) {
531 while (*attrib_list != EGL_NONE) {
532 GLint attr = *attrib_list++;
533 GLint value = *attrib_list++;
534 if (attr == EGL_CONTEXT_CLIENT_VERSION) {
535 if (value == 1) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800536 version = egl_connection_t::GLESv1_INDEX;
Jesse Hall47743382013-02-08 11:13:46 -0800537 } else if (value == 2 || value == 3) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800538 version = egl_connection_t::GLESv2_INDEX;
Mathias Agopian518ec112011-05-13 16:21:08 -0700539 }
540 }
541 };
542 }
Jesse Hallb29e5e82012-04-04 16:53:42 -0700543 egl_context_t* c = new egl_context_t(dpy, context, config, cnx,
544 version);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800545#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800546 if (getEGLDebugLevel() > 0)
Siva Velusamy0469dd62011-11-30 15:05:37 -0800547 GLTrace_eglCreateContext(version, c);
548#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700549 return c;
Mathias Agopian500407a2012-09-24 17:57:48 -0700550 } else {
551 EGLint error = eglGetError();
552 ALOGE_IF(error == EGL_SUCCESS,
553 "eglCreateContext(%p, %p, %p, %p) returned EGL_NO_CONTEXT "
554 "but no EGL error!",
555 dpy, config, share_list, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700556 }
557 }
558 return EGL_NO_CONTEXT;
559}
560
561EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
562{
563 clearError();
564
Jesse Hallb29e5e82012-04-04 16:53:42 -0700565 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700566 if (!dp)
567 return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -0700568
Jesse Hallb29e5e82012-04-04 16:53:42 -0700569 ContextRef _c(dp.get(), ctx);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700570 if (!_c.get())
571 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
Jesse Hall47743382013-02-08 11:13:46 -0800572
Mathias Agopian518ec112011-05-13 16:21:08 -0700573 egl_context_t * const c = get_context(ctx);
Mathias Agopianada798b2012-02-13 17:09:30 -0800574 EGLBoolean result = c->cnx->egl.eglDestroyContext(dp->disp.dpy, c->context);
Mathias Agopian518ec112011-05-13 16:21:08 -0700575 if (result == EGL_TRUE) {
576 _c.terminate();
577 }
578 return result;
579}
580
Mathias Agopian518ec112011-05-13 16:21:08 -0700581EGLBoolean eglMakeCurrent( EGLDisplay dpy, EGLSurface draw,
582 EGLSurface read, EGLContext ctx)
583{
584 clearError();
585
Jesse Hallb29e5e82012-04-04 16:53:42 -0700586 egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700587 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
588
Mathias Agopian5b287a62011-05-16 18:58:55 -0700589 // If ctx is not EGL_NO_CONTEXT, read is not EGL_NO_SURFACE, or draw is not
590 // EGL_NO_SURFACE, then an EGL_NOT_INITIALIZED error is generated if dpy is
591 // a valid but uninitialized display.
Mathias Agopian518ec112011-05-13 16:21:08 -0700592 if ( (ctx != EGL_NO_CONTEXT) || (read != EGL_NO_SURFACE) ||
593 (draw != EGL_NO_SURFACE) ) {
594 if (!dp->isReady()) return setError(EGL_NOT_INITIALIZED, EGL_FALSE);
595 }
596
597 // get a reference to the object passed in
Jesse Hallb29e5e82012-04-04 16:53:42 -0700598 ContextRef _c(dp.get(), ctx);
599 SurfaceRef _d(dp.get(), draw);
600 SurfaceRef _r(dp.get(), read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700601
602 // validate the context (if not EGL_NO_CONTEXT)
Mathias Agopian5b287a62011-05-16 18:58:55 -0700603 if ((ctx != EGL_NO_CONTEXT) && !_c.get()) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700604 // EGL_NO_CONTEXT is valid
605 return EGL_FALSE;
606 }
607
608 // these are the underlying implementation's object
609 EGLContext impl_ctx = EGL_NO_CONTEXT;
610 EGLSurface impl_draw = EGL_NO_SURFACE;
611 EGLSurface impl_read = EGL_NO_SURFACE;
612
613 // these are our objects structs passed in
614 egl_context_t * c = NULL;
615 egl_surface_t const * d = NULL;
616 egl_surface_t const * r = NULL;
617
618 // these are the current objects structs
619 egl_context_t * cur_c = get_context(getContext());
Jesse Hall47743382013-02-08 11:13:46 -0800620
Mathias Agopian518ec112011-05-13 16:21:08 -0700621 if (ctx != EGL_NO_CONTEXT) {
622 c = get_context(ctx);
623 impl_ctx = c->context;
624 } else {
625 // no context given, use the implementation of the current context
626 if (cur_c == NULL) {
627 // no current context
628 if (draw != EGL_NO_SURFACE || read != EGL_NO_SURFACE) {
629 // calling eglMakeCurrent( ..., !=0, !=0, EGL_NO_CONTEXT);
630 return setError(EGL_BAD_MATCH, EGL_FALSE);
631 }
632 // not an error, there is just no current context.
633 return EGL_TRUE;
634 }
635 }
636
637 // retrieve the underlying implementation's draw EGLSurface
638 if (draw != EGL_NO_SURFACE) {
639 d = get_surface(draw);
Mathias Agopian518ec112011-05-13 16:21:08 -0700640 impl_draw = d->surface;
641 }
642
643 // retrieve the underlying implementation's read EGLSurface
644 if (read != EGL_NO_SURFACE) {
645 r = get_surface(read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700646 impl_read = r->surface;
647 }
648
Mathias Agopian518ec112011-05-13 16:21:08 -0700649
Jesse Hallb29e5e82012-04-04 16:53:42 -0700650 EGLBoolean result = dp->makeCurrent(c, cur_c,
Mathias Agopianfb87e542012-01-30 18:20:52 -0800651 draw, read, ctx,
652 impl_draw, impl_read, impl_ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700653
654 if (result == EGL_TRUE) {
Mathias Agopianfb87e542012-01-30 18:20:52 -0800655 if (c) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700656 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
657 egl_tls_t::setContext(ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800658#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800659 if (getEGLDebugLevel() > 0)
Siva Velusamy93a826f2011-12-14 12:19:56 -0800660 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800661#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700662 _c.acquire();
663 _r.acquire();
664 _d.acquire();
Mathias Agopian518ec112011-05-13 16:21:08 -0700665 } else {
666 setGLHooksThreadSpecific(&gHooksNoContext);
667 egl_tls_t::setContext(EGL_NO_CONTEXT);
668 }
Mathias Agopian5fecea72011-08-25 18:38:24 -0700669 } else {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000670 // this will ALOGE the error
Mathias Agopian5fecea72011-08-25 18:38:24 -0700671 result = setError(c->cnx->egl.eglGetError(), EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700672 }
673 return result;
674}
675
676
677EGLBoolean eglQueryContext( EGLDisplay dpy, EGLContext ctx,
678 EGLint attribute, EGLint *value)
679{
680 clearError();
681
Jesse Hallb29e5e82012-04-04 16:53:42 -0700682 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700683 if (!dp) return EGL_FALSE;
684
Jesse Hallb29e5e82012-04-04 16:53:42 -0700685 ContextRef _c(dp.get(), ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700686 if (!_c.get()) return setError(EGL_BAD_CONTEXT, EGL_FALSE);
687
Mathias Agopian518ec112011-05-13 16:21:08 -0700688 egl_context_t * const c = get_context(ctx);
Mathias Agopian7773c432012-02-13 20:06:08 -0800689 return c->cnx->egl.eglQueryContext(
690 dp->disp.dpy, c->context, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700691
Mathias Agopian518ec112011-05-13 16:21:08 -0700692}
693
694EGLContext eglGetCurrentContext(void)
695{
696 // could be called before eglInitialize(), but we wouldn't have a context
697 // then, and this function would correctly return EGL_NO_CONTEXT.
698
699 clearError();
700
701 EGLContext ctx = getContext();
702 return ctx;
703}
704
705EGLSurface eglGetCurrentSurface(EGLint readdraw)
706{
707 // could be called before eglInitialize(), but we wouldn't have a context
708 // then, and this function would correctly return EGL_NO_SURFACE.
709
710 clearError();
711
712 EGLContext ctx = getContext();
713 if (ctx) {
714 egl_context_t const * const c = get_context(ctx);
715 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
716 switch (readdraw) {
717 case EGL_READ: return c->read;
Jesse Hall47743382013-02-08 11:13:46 -0800718 case EGL_DRAW: return c->draw;
Mathias Agopian518ec112011-05-13 16:21:08 -0700719 default: return setError(EGL_BAD_PARAMETER, EGL_NO_SURFACE);
720 }
721 }
722 return EGL_NO_SURFACE;
723}
724
725EGLDisplay eglGetCurrentDisplay(void)
726{
727 // could be called before eglInitialize(), but we wouldn't have a context
728 // then, and this function would correctly return EGL_NO_DISPLAY.
729
730 clearError();
731
732 EGLContext ctx = getContext();
733 if (ctx) {
734 egl_context_t const * const c = get_context(ctx);
735 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
736 return c->dpy;
737 }
738 return EGL_NO_DISPLAY;
739}
740
741EGLBoolean eglWaitGL(void)
742{
Mathias Agopian518ec112011-05-13 16:21:08 -0700743 clearError();
744
Mathias Agopianada798b2012-02-13 17:09:30 -0800745 egl_connection_t* const cnx = &gEGLImpl;
746 if (!cnx->dso)
747 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
748
749 return cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -0700750}
751
752EGLBoolean eglWaitNative(EGLint engine)
753{
Mathias Agopian518ec112011-05-13 16:21:08 -0700754 clearError();
755
Mathias Agopianada798b2012-02-13 17:09:30 -0800756 egl_connection_t* const cnx = &gEGLImpl;
757 if (!cnx->dso)
758 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
759
760 return cnx->egl.eglWaitNative(engine);
Mathias Agopian518ec112011-05-13 16:21:08 -0700761}
762
763EGLint eglGetError(void)
764{
Mathias Agopianada798b2012-02-13 17:09:30 -0800765 EGLint err = EGL_SUCCESS;
766 egl_connection_t* const cnx = &gEGLImpl;
767 if (cnx->dso) {
768 err = cnx->egl.eglGetError();
Mathias Agopian518ec112011-05-13 16:21:08 -0700769 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800770 if (err == EGL_SUCCESS) {
771 err = egl_tls_t::getError();
772 }
773 return err;
Mathias Agopian518ec112011-05-13 16:21:08 -0700774}
775
Jesse Hallc07b5202013-07-04 12:08:16 -0700776static __eglMustCastToProperFunctionPointerType findBuiltinGLWrapper(
777 const char* procname) {
778 const egl_connection_t* cnx = &gEGLImpl;
779 void* proc = NULL;
780
781 proc = dlsym(cnx->libGles2, procname);
782 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
783
784 proc = dlsym(cnx->libGles1, procname);
785 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
786
787 return NULL;
788}
789
Mathias Agopian518ec112011-05-13 16:21:08 -0700790__eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname)
791{
792 // eglGetProcAddress() could be the very first function called
793 // in which case we must make sure we've initialized ourselves, this
794 // happens the first time egl_get_display() is called.
795
796 clearError();
797
798 if (egl_init_drivers() == EGL_FALSE) {
799 setError(EGL_BAD_PARAMETER, NULL);
800 return NULL;
801 }
802
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700803 if (FILTER_EXTENSIONS(procname)) {
Jamie Gennisaca51c02011-11-03 17:42:43 -0700804 return NULL;
805 }
806
Mathias Agopian518ec112011-05-13 16:21:08 -0700807 __eglMustCastToProperFunctionPointerType addr;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700808 addr = findProcAddress(procname, sExtensionMap, NELEM(sExtensionMap));
Mathias Agopian518ec112011-05-13 16:21:08 -0700809 if (addr) return addr;
810
Jesse Hallc07b5202013-07-04 12:08:16 -0700811 addr = findBuiltinGLWrapper(procname);
812 if (addr) return addr;
Jamie Gennisaca51c02011-11-03 17:42:43 -0700813
Mathias Agopian518ec112011-05-13 16:21:08 -0700814 // this protects accesses to sGLExtentionMap and sGLExtentionSlot
815 pthread_mutex_lock(&sExtensionMapMutex);
816
817 /*
818 * Since eglGetProcAddress() is not associated to anything, it needs
819 * to return a function pointer that "works" regardless of what
820 * the current context is.
821 *
822 * For this reason, we return a "forwarder", a small stub that takes
823 * care of calling the function associated with the context
824 * currently bound.
825 *
826 * We first look for extensions we've already resolved, if we're seeing
827 * this extension for the first time, we go through all our
828 * implementations and call eglGetProcAddress() and record the
829 * result in the appropriate implementation hooks and return the
830 * address of the forwarder corresponding to that hook set.
831 *
832 */
833
834 const String8 name(procname);
835 addr = sGLExtentionMap.valueFor(name);
836 const int slot = sGLExtentionSlot;
837
Steve Blocke6f43dd2012-01-06 19:20:56 +0000838 ALOGE_IF(slot >= MAX_NUMBER_OF_GL_EXTENSIONS,
Mathias Agopian518ec112011-05-13 16:21:08 -0700839 "no more slots for eglGetProcAddress(\"%s\")",
840 procname);
841
Siva Velusamy0469dd62011-11-30 15:05:37 -0800842#if EGL_TRACE
843 gl_hooks_t *debugHooks = GLTrace_getGLHooks();
844#endif
845
Mathias Agopian518ec112011-05-13 16:21:08 -0700846 if (!addr && (slot < MAX_NUMBER_OF_GL_EXTENSIONS)) {
847 bool found = false;
Mathias Agopianada798b2012-02-13 17:09:30 -0800848
849 egl_connection_t* const cnx = &gEGLImpl;
850 if (cnx->dso && cnx->egl.eglGetProcAddress) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800851 // Extensions are independent of the bound context
luliuhui69d10072012-08-30 11:15:36 +0800852 addr =
Mathias Agopian7773c432012-02-13 20:06:08 -0800853 cnx->hooks[egl_connection_t::GLESv1_INDEX]->ext.extensions[slot] =
854 cnx->hooks[egl_connection_t::GLESv2_INDEX]->ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700855#if EGL_TRACE
Mathias Agopianada798b2012-02-13 17:09:30 -0800856 debugHooks->ext.extensions[slot] =
857 gHooksTrace.ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700858#endif
Mathias Agopianada798b2012-02-13 17:09:30 -0800859 cnx->egl.eglGetProcAddress(procname);
luliuhui69d10072012-08-30 11:15:36 +0800860 if (addr) found = true;
Mathias Agopian518ec112011-05-13 16:21:08 -0700861 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800862
Mathias Agopian518ec112011-05-13 16:21:08 -0700863 if (found) {
luliuhui69d10072012-08-30 11:15:36 +0800864#if USE_FAST_TLS_KEY
Mathias Agopian518ec112011-05-13 16:21:08 -0700865 addr = gExtensionForwarders[slot];
luliuhui69d10072012-08-30 11:15:36 +0800866#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700867 sGLExtentionMap.add(name, addr);
868 sGLExtentionSlot++;
869 }
870 }
871
872 pthread_mutex_unlock(&sExtensionMapMutex);
873 return addr;
874}
875
Jamie Gennis28ef8d72012-04-05 20:34:54 -0700876class FrameCompletionThread : public Thread {
877public:
878
879 static void queueSync(EGLSyncKHR sync) {
880 static sp<FrameCompletionThread> thread(new FrameCompletionThread);
881 static bool running = false;
882 if (!running) {
883 thread->run("GPUFrameCompletion");
884 running = true;
885 }
886 {
887 Mutex::Autolock lock(thread->mMutex);
888 ScopedTrace st(ATRACE_TAG, String8::format("kicked off frame %d",
889 thread->mFramesQueued).string());
890 thread->mQueue.push_back(sync);
891 thread->mCondition.signal();
892 thread->mFramesQueued++;
893 ATRACE_INT("GPU Frames Outstanding", thread->mQueue.size());
894 }
895 }
896
897private:
898 FrameCompletionThread() : mFramesQueued(0), mFramesCompleted(0) {}
899
900 virtual bool threadLoop() {
901 EGLSyncKHR sync;
902 uint32_t frameNum;
903 {
904 Mutex::Autolock lock(mMutex);
905 while (mQueue.isEmpty()) {
906 mCondition.wait(mMutex);
907 }
908 sync = mQueue[0];
909 frameNum = mFramesCompleted;
910 }
911 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
912 {
913 ScopedTrace st(ATRACE_TAG, String8::format("waiting for frame %d",
914 frameNum).string());
915 EGLint result = eglClientWaitSyncKHR(dpy, sync, 0, EGL_FOREVER_KHR);
916 if (result == EGL_FALSE) {
917 ALOGE("FrameCompletion: error waiting for fence: %#x", eglGetError());
918 } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
919 ALOGE("FrameCompletion: timeout waiting for fence");
920 }
921 eglDestroySyncKHR(dpy, sync);
922 }
923 {
924 Mutex::Autolock lock(mMutex);
925 mQueue.removeAt(0);
926 mFramesCompleted++;
927 ATRACE_INT("GPU Frames Outstanding", mQueue.size());
928 }
929 return true;
930 }
931
932 uint32_t mFramesQueued;
933 uint32_t mFramesCompleted;
934 Vector<EGLSyncKHR> mQueue;
935 Condition mCondition;
936 Mutex mMutex;
937};
938
Mathias Agopian518ec112011-05-13 16:21:08 -0700939EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface draw)
940{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800941 ATRACE_CALL();
Mathias Agopian518ec112011-05-13 16:21:08 -0700942 clearError();
943
Jesse Hallb29e5e82012-04-04 16:53:42 -0700944 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700945 if (!dp) return EGL_FALSE;
946
Jesse Hallb29e5e82012-04-04 16:53:42 -0700947 SurfaceRef _s(dp.get(), draw);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700948 if (!_s.get())
949 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700950
Siva Velusamy0469dd62011-11-30 15:05:37 -0800951#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800952 gl_hooks_t const *trace_hooks = getGLTraceThreadSpecific();
953 if (getEGLDebugLevel() > 0) {
954 if (trace_hooks == NULL) {
955 if (GLTrace_start() < 0) {
956 ALOGE("Disabling Tracer for OpenGL ES");
957 setEGLDebugLevel(0);
958 } else {
959 // switch over to the trace version of hooks
960 EGLContext ctx = egl_tls_t::getContext();
961 egl_context_t * const c = get_context(ctx);
962 if (c) {
963 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
964 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
965 }
966 }
967 }
968
Siva Velusamy0469dd62011-11-30 15:05:37 -0800969 GLTrace_eglSwapBuffers(dpy, draw);
Siva Velusamya73a9772012-12-18 14:56:55 -0800970 } else if (trace_hooks != NULL) {
971 // tracing is now disabled, so switch back to the non trace version
972 EGLContext ctx = egl_tls_t::getContext();
973 egl_context_t * const c = get_context(ctx);
974 if (c) setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
975 GLTrace_stop();
976 }
Siva Velusamy0469dd62011-11-30 15:05:37 -0800977#endif
978
Mathias Agopian518ec112011-05-13 16:21:08 -0700979 egl_surface_t const * const s = get_surface(draw);
Mathias Agopian7db993a2012-03-25 00:49:46 -0700980
Mathias Agopianed6d08b2013-04-16 16:39:46 -0700981 if (CC_UNLIKELY(dp->traceGpuCompletion)) {
982 EGLSyncKHR sync = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL);
983 if (sync != EGL_NO_SYNC_KHR) {
984 FrameCompletionThread::queueSync(sync);
985 }
986 }
987
Mathias Agopian7db993a2012-03-25 00:49:46 -0700988 if (CC_UNLIKELY(dp->finishOnSwap)) {
989 uint32_t pixel;
990 egl_context_t * const c = get_context( egl_tls_t::getContext() );
991 if (c) {
992 // glReadPixels() ensures that the frame is complete
993 s->cnx->hooks[c->version]->gl.glReadPixels(0,0,1,1,
994 GL_RGBA,GL_UNSIGNED_BYTE,&pixel);
995 }
996 }
997
Mathias Agopianed6d08b2013-04-16 16:39:46 -0700998 return s->cnx->egl.eglSwapBuffers(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -0700999}
1000
1001EGLBoolean eglCopyBuffers( EGLDisplay dpy, EGLSurface surface,
1002 NativePixmapType target)
1003{
1004 clearError();
1005
Jesse Hallb29e5e82012-04-04 16:53:42 -07001006 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001007 if (!dp) return EGL_FALSE;
1008
Jesse Hallb29e5e82012-04-04 16:53:42 -07001009 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001010 if (!_s.get())
1011 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001012
Mathias Agopian518ec112011-05-13 16:21:08 -07001013 egl_surface_t const * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -08001014 return s->cnx->egl.eglCopyBuffers(dp->disp.dpy, s->surface, target);
Mathias Agopian518ec112011-05-13 16:21:08 -07001015}
1016
1017const char* eglQueryString(EGLDisplay dpy, EGLint name)
1018{
1019 clearError();
1020
Jesse Hallb29e5e82012-04-04 16:53:42 -07001021 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001022 if (!dp) return (const char *) NULL;
1023
1024 switch (name) {
1025 case EGL_VENDOR:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001026 return dp->getVendorString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001027 case EGL_VERSION:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001028 return dp->getVersionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001029 case EGL_EXTENSIONS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001030 return dp->getExtensionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001031 case EGL_CLIENT_APIS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001032 return dp->getClientApiString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001033 }
1034 return setError(EGL_BAD_PARAMETER, (const char *)0);
1035}
1036
Mathias Agopianca088332013-03-28 17:44:13 -07001037EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name)
1038{
1039 clearError();
1040
1041 const egl_display_ptr dp = validate_display(dpy);
1042 if (!dp) return (const char *) NULL;
1043
1044 switch (name) {
1045 case EGL_VENDOR:
1046 return dp->disp.queryString.vendor;
1047 case EGL_VERSION:
1048 return dp->disp.queryString.version;
1049 case EGL_EXTENSIONS:
1050 return dp->disp.queryString.extensions;
1051 case EGL_CLIENT_APIS:
1052 return dp->disp.queryString.clientApi;
1053 }
1054 return setError(EGL_BAD_PARAMETER, (const char *)0);
1055}
Mathias Agopian518ec112011-05-13 16:21:08 -07001056
1057// ----------------------------------------------------------------------------
1058// EGL 1.1
1059// ----------------------------------------------------------------------------
1060
1061EGLBoolean eglSurfaceAttrib(
1062 EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
1063{
1064 clearError();
1065
Jesse Hallb29e5e82012-04-04 16:53:42 -07001066 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001067 if (!dp) return EGL_FALSE;
1068
Jesse Hallb29e5e82012-04-04 16:53:42 -07001069 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001070 if (!_s.get())
1071 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001072
Mathias Agopian518ec112011-05-13 16:21:08 -07001073 egl_surface_t const * const s = get_surface(surface);
1074 if (s->cnx->egl.eglSurfaceAttrib) {
1075 return s->cnx->egl.eglSurfaceAttrib(
Mathias Agopianada798b2012-02-13 17:09:30 -08001076 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001077 }
1078 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1079}
1080
1081EGLBoolean eglBindTexImage(
1082 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1083{
1084 clearError();
1085
Jesse Hallb29e5e82012-04-04 16:53:42 -07001086 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001087 if (!dp) return EGL_FALSE;
1088
Jesse Hallb29e5e82012-04-04 16:53:42 -07001089 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001090 if (!_s.get())
1091 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001092
Mathias Agopian518ec112011-05-13 16:21:08 -07001093 egl_surface_t const * const s = get_surface(surface);
1094 if (s->cnx->egl.eglBindTexImage) {
1095 return s->cnx->egl.eglBindTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001096 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001097 }
1098 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1099}
1100
1101EGLBoolean eglReleaseTexImage(
1102 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1103{
1104 clearError();
1105
Jesse Hallb29e5e82012-04-04 16:53:42 -07001106 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001107 if (!dp) return EGL_FALSE;
1108
Jesse Hallb29e5e82012-04-04 16:53:42 -07001109 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001110 if (!_s.get())
1111 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001112
Mathias Agopian518ec112011-05-13 16:21:08 -07001113 egl_surface_t const * const s = get_surface(surface);
1114 if (s->cnx->egl.eglReleaseTexImage) {
1115 return s->cnx->egl.eglReleaseTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001116 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001117 }
1118 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1119}
1120
1121EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
1122{
1123 clearError();
1124
Jesse Hallb29e5e82012-04-04 16:53:42 -07001125 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001126 if (!dp) return EGL_FALSE;
1127
1128 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001129 egl_connection_t* const cnx = &gEGLImpl;
1130 if (cnx->dso && cnx->egl.eglSwapInterval) {
1131 res = cnx->egl.eglSwapInterval(dp->disp.dpy, interval);
Mathias Agopian518ec112011-05-13 16:21:08 -07001132 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001133
Mathias Agopian518ec112011-05-13 16:21:08 -07001134 return res;
1135}
1136
1137
1138// ----------------------------------------------------------------------------
1139// EGL 1.2
1140// ----------------------------------------------------------------------------
1141
1142EGLBoolean eglWaitClient(void)
1143{
1144 clearError();
1145
Mathias Agopianada798b2012-02-13 17:09:30 -08001146 egl_connection_t* const cnx = &gEGLImpl;
1147 if (!cnx->dso)
1148 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
1149
1150 EGLBoolean res;
1151 if (cnx->egl.eglWaitClient) {
1152 res = cnx->egl.eglWaitClient();
1153 } else {
1154 res = cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -07001155 }
1156 return res;
1157}
1158
1159EGLBoolean eglBindAPI(EGLenum api)
1160{
1161 clearError();
1162
1163 if (egl_init_drivers() == EGL_FALSE) {
1164 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1165 }
1166
1167 // bind this API on all EGLs
1168 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001169 egl_connection_t* const cnx = &gEGLImpl;
1170 if (cnx->dso && cnx->egl.eglBindAPI) {
1171 res = cnx->egl.eglBindAPI(api);
Mathias Agopian518ec112011-05-13 16:21:08 -07001172 }
1173 return res;
1174}
1175
1176EGLenum eglQueryAPI(void)
1177{
1178 clearError();
1179
1180 if (egl_init_drivers() == EGL_FALSE) {
1181 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1182 }
1183
Mathias Agopianada798b2012-02-13 17:09:30 -08001184 egl_connection_t* const cnx = &gEGLImpl;
1185 if (cnx->dso && cnx->egl.eglQueryAPI) {
1186 return cnx->egl.eglQueryAPI();
Mathias Agopian518ec112011-05-13 16:21:08 -07001187 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001188
Mathias Agopian518ec112011-05-13 16:21:08 -07001189 // or, it can only be OpenGL ES
1190 return EGL_OPENGL_ES_API;
1191}
1192
1193EGLBoolean eglReleaseThread(void)
1194{
1195 clearError();
1196
1197 // If there is context bound to the thread, release it
Mathias Agopianfb87e542012-01-30 18:20:52 -08001198 egl_display_t::loseCurrent(get_context(getContext()));
Mathias Agopian518ec112011-05-13 16:21:08 -07001199
Mathias Agopianada798b2012-02-13 17:09:30 -08001200 egl_connection_t* const cnx = &gEGLImpl;
1201 if (cnx->dso && cnx->egl.eglReleaseThread) {
1202 cnx->egl.eglReleaseThread();
Mathias Agopian518ec112011-05-13 16:21:08 -07001203 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001204
Mathias Agopian518ec112011-05-13 16:21:08 -07001205 egl_tls_t::clearTLS();
Siva Velusamy0469dd62011-11-30 15:05:37 -08001206#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -08001207 if (getEGLDebugLevel() > 0)
Siva Velusamy0469dd62011-11-30 15:05:37 -08001208 GLTrace_eglReleaseThread();
1209#endif
Mathias Agopian518ec112011-05-13 16:21:08 -07001210 return EGL_TRUE;
1211}
1212
1213EGLSurface eglCreatePbufferFromClientBuffer(
1214 EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer,
1215 EGLConfig config, const EGLint *attrib_list)
1216{
1217 clearError();
1218
Jesse Hallb29e5e82012-04-04 16:53:42 -07001219 egl_connection_t* cnx = NULL;
1220 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
1221 if (!dp) return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -07001222 if (cnx->egl.eglCreatePbufferFromClientBuffer) {
1223 return cnx->egl.eglCreatePbufferFromClientBuffer(
Mathias Agopian7773c432012-02-13 20:06:08 -08001224 dp->disp.dpy, buftype, buffer, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001225 }
1226 return setError(EGL_BAD_CONFIG, EGL_NO_SURFACE);
1227}
1228
1229// ----------------------------------------------------------------------------
1230// EGL_EGLEXT_VERSION 3
1231// ----------------------------------------------------------------------------
1232
1233EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface,
1234 const EGLint *attrib_list)
1235{
1236 clearError();
1237
Jesse Hallb29e5e82012-04-04 16:53:42 -07001238 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001239 if (!dp) return EGL_FALSE;
1240
Jesse Hallb29e5e82012-04-04 16:53:42 -07001241 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001242 if (!_s.get())
1243 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001244
1245 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001246 if (s->cnx->egl.eglLockSurfaceKHR) {
1247 return s->cnx->egl.eglLockSurfaceKHR(
Mathias Agopianada798b2012-02-13 17:09:30 -08001248 dp->disp.dpy, s->surface, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001249 }
1250 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1251}
1252
1253EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface)
1254{
1255 clearError();
1256
Jesse Hallb29e5e82012-04-04 16:53:42 -07001257 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001258 if (!dp) return EGL_FALSE;
1259
Jesse Hallb29e5e82012-04-04 16:53:42 -07001260 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001261 if (!_s.get())
1262 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001263
1264 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001265 if (s->cnx->egl.eglUnlockSurfaceKHR) {
Mathias Agopianada798b2012-02-13 17:09:30 -08001266 return s->cnx->egl.eglUnlockSurfaceKHR(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001267 }
1268 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1269}
1270
1271EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1272 EGLClientBuffer buffer, const EGLint *attrib_list)
1273{
1274 clearError();
1275
Jesse Hallb29e5e82012-04-04 16:53:42 -07001276 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001277 if (!dp) return EGL_NO_IMAGE_KHR;
1278
Jesse Hallb29e5e82012-04-04 16:53:42 -07001279 ContextRef _c(dp.get(), ctx);
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001280 egl_context_t * const c = _c.get();
Mathias Agopian518ec112011-05-13 16:21:08 -07001281
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001282 EGLImageKHR result = EGL_NO_IMAGE_KHR;
1283 egl_connection_t* const cnx = &gEGLImpl;
1284 if (cnx->dso && cnx->egl.eglCreateImageKHR) {
1285 result = cnx->egl.eglCreateImageKHR(
1286 dp->disp.dpy,
1287 c ? c->context : EGL_NO_CONTEXT,
1288 target, buffer, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001289 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001290 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001291}
1292
1293EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img)
1294{
1295 clearError();
1296
Jesse Hallb29e5e82012-04-04 16:53:42 -07001297 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001298 if (!dp) return EGL_FALSE;
1299
Steven Holte646a5c52012-06-04 20:02:11 -07001300 EGLBoolean result = EGL_FALSE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001301 egl_connection_t* const cnx = &gEGLImpl;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001302 if (cnx->dso && cnx->egl.eglDestroyImageKHR) {
Steven Holte646a5c52012-06-04 20:02:11 -07001303 result = cnx->egl.eglDestroyImageKHR(dp->disp.dpy, img);
Mathias Agopian518ec112011-05-13 16:21:08 -07001304 }
Steven Holte646a5c52012-06-04 20:02:11 -07001305 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001306}
1307
1308// ----------------------------------------------------------------------------
1309// EGL_EGLEXT_VERSION 5
1310// ----------------------------------------------------------------------------
1311
1312
1313EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, 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_NO_SYNC_KHR;
1319
Mathias Agopian518ec112011-05-13 16:21:08 -07001320 EGLSyncKHR result = EGL_NO_SYNC_KHR;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001321 egl_connection_t* const cnx = &gEGLImpl;
1322 if (cnx->dso && cnx->egl.eglCreateSyncKHR) {
1323 result = cnx->egl.eglCreateSyncKHR(dp->disp.dpy, type, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001324 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001325 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001326}
1327
1328EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync)
1329{
1330 clearError();
1331
Jesse Hallb29e5e82012-04-04 16:53:42 -07001332 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001333 if (!dp) return EGL_FALSE;
1334
Mathias Agopian518ec112011-05-13 16:21:08 -07001335 EGLBoolean result = EGL_FALSE;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001336 egl_connection_t* const cnx = &gEGLImpl;
1337 if (cnx->dso && cnx->egl.eglDestroySyncKHR) {
1338 result = cnx->egl.eglDestroySyncKHR(dp->disp.dpy, sync);
Mathias Agopian518ec112011-05-13 16:21:08 -07001339 }
1340 return result;
1341}
1342
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -07001343EGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) {
1344 clearError();
1345
1346 const egl_display_ptr dp = validate_display(dpy);
1347 if (!dp) return EGL_FALSE;
1348
1349 EGLBoolean result = EGL_FALSE;
1350 egl_connection_t* const cnx = &gEGLImpl;
1351 if (cnx->dso && cnx->egl.eglSignalSyncKHR) {
1352 result = cnx->egl.eglSignalSyncKHR(
1353 dp->disp.dpy, sync, mode);
1354 }
1355 return result;
1356}
1357
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001358EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync,
1359 EGLint flags, EGLTimeKHR timeout)
Mathias Agopian518ec112011-05-13 16:21:08 -07001360{
1361 clearError();
1362
Jesse Hallb29e5e82012-04-04 16:53:42 -07001363 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001364 if (!dp) return EGL_FALSE;
1365
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001366 EGLBoolean result = EGL_FALSE;
1367 egl_connection_t* const cnx = &gEGLImpl;
1368 if (cnx->dso && cnx->egl.eglClientWaitSyncKHR) {
1369 result = cnx->egl.eglClientWaitSyncKHR(
1370 dp->disp.dpy, sync, flags, timeout);
Mathias Agopian518ec112011-05-13 16:21:08 -07001371 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001372 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001373}
1374
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001375EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync,
1376 EGLint attribute, EGLint *value)
Mathias Agopian518ec112011-05-13 16:21:08 -07001377{
1378 clearError();
1379
Jesse Hallb29e5e82012-04-04 16:53:42 -07001380 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001381 if (!dp) return EGL_FALSE;
1382
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001383 EGLBoolean result = EGL_FALSE;
1384 egl_connection_t* const cnx = &gEGLImpl;
1385 if (cnx->dso && cnx->egl.eglGetSyncAttribKHR) {
1386 result = cnx->egl.eglGetSyncAttribKHR(
1387 dp->disp.dpy, sync, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001388 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001389 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001390}
1391
1392// ----------------------------------------------------------------------------
Mathias Agopian2bb71682013-03-27 17:32:41 -07001393// EGL_EGLEXT_VERSION 15
1394// ----------------------------------------------------------------------------
1395
1396EGLint eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) {
1397 clearError();
1398 const egl_display_ptr dp = validate_display(dpy);
1399 if (!dp) return EGL_FALSE;
1400 EGLint result = EGL_FALSE;
1401 egl_connection_t* const cnx = &gEGLImpl;
1402 if (cnx->dso && cnx->egl.eglWaitSyncKHR) {
1403 result = cnx->egl.eglWaitSyncKHR(dp->disp.dpy, sync, flags);
1404 }
1405 return result;
1406}
1407
1408// ----------------------------------------------------------------------------
Mathias Agopian518ec112011-05-13 16:21:08 -07001409// ANDROID extensions
1410// ----------------------------------------------------------------------------
1411
Jamie Gennis331841b2012-09-06 14:52:00 -07001412EGLint eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync)
1413{
1414 clearError();
1415
1416 const egl_display_ptr dp = validate_display(dpy);
1417 if (!dp) return EGL_NO_NATIVE_FENCE_FD_ANDROID;
1418
1419 EGLint result = EGL_NO_NATIVE_FENCE_FD_ANDROID;
1420 egl_connection_t* const cnx = &gEGLImpl;
1421 if (cnx->dso && cnx->egl.eglDupNativeFenceFDANDROID) {
1422 result = cnx->egl.eglDupNativeFenceFDANDROID(dp->disp.dpy, sync);
1423 }
1424 return result;
1425}
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001426
Andy McFadden72841452013-03-01 16:25:32 -08001427EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface,
1428 EGLnsecsANDROID time)
1429{
1430 clearError();
1431
1432 const egl_display_ptr dp = validate_display(dpy);
1433 if (!dp) {
1434 return EGL_FALSE;
1435 }
1436
1437 SurfaceRef _s(dp.get(), surface);
1438 if (!_s.get()) {
1439 setError(EGL_BAD_SURFACE, EGL_FALSE);
1440 return EGL_FALSE;
1441 }
1442
1443 egl_surface_t const * const s = get_surface(surface);
1444 native_window_set_buffers_timestamp(s->win.get(), time);
1445
1446 return EGL_TRUE;
1447}
1448
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001449// ----------------------------------------------------------------------------
1450// NVIDIA extensions
1451// ----------------------------------------------------------------------------
1452EGLuint64NV eglGetSystemTimeFrequencyNV()
1453{
1454 clearError();
1455
1456 if (egl_init_drivers() == EGL_FALSE) {
1457 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1458 }
1459
1460 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001461 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001462
Mathias Agopianada798b2012-02-13 17:09:30 -08001463 if (cnx->dso && cnx->egl.eglGetSystemTimeFrequencyNV) {
1464 return cnx->egl.eglGetSystemTimeFrequencyNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001465 }
1466
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001467 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001468}
1469
1470EGLuint64NV eglGetSystemTimeNV()
1471{
1472 clearError();
1473
1474 if (egl_init_drivers() == EGL_FALSE) {
1475 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1476 }
1477
1478 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001479 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001480
Mathias Agopianada798b2012-02-13 17:09:30 -08001481 if (cnx->dso && cnx->egl.eglGetSystemTimeNV) {
1482 return cnx->egl.eglGetSystemTimeNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001483 }
1484
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001485 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001486}