blob: b02ee0f8b43d3440464914ebf0f536adedc479e8 [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
207 uint32_t index = uint32_t(display);
208 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.
Mathias Agopianf4486c62013-08-28 15:22:29 -0700424#if WORKAROUND_BUG_10194508
425#warning "WORKAROUND_10194508 enabled"
426 EGLint format;
427 if (!cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_NATIVE_VISUAL_ID,
428 &format)) {
429 ALOGE("eglGetConfigAttrib(EGL_NATIVE_VISUAL_ID) failed: %#x",
430 eglGetError());
431 format = 0;
432 }
433 if (attrib_list) {
434 for (const EGLint* attr = attrib_list; *attr != EGL_NONE;
435 attr += 2) {
436 if (*attr == EGL_GL_COLORSPACE_KHR &&
437 dp->haveExtension("EGL_KHR_gl_colorspace")) {
Jesse Halla2ba4282013-09-14 21:00:14 -0700438 if (ENABLE_EGL_KHR_GL_COLORSPACE) {
439 format = modifyFormatColorspace(format, *(attr+1));
440 } else {
441 // Normally we'd pass through unhandled attributes to
442 // the driver. But in case the driver implements this
443 // extension but we're disabling it, we want to prevent
444 // it getting through -- support will be broken without
445 // our help.
446 ALOGE("sRGB window surfaces not supported");
447 return setError(EGL_BAD_ATTRIBUTE, EGL_NO_SURFACE);
448 }
Mathias Agopianf4486c62013-08-28 15:22:29 -0700449 }
450 }
451 }
452#else
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700453 // by default, just pick RGBA_8888
454 EGLint format = HAL_PIXEL_FORMAT_RGBA_8888;
455
456 EGLint a = 0;
457 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_ALPHA_SIZE, &a);
458 if (a > 0) {
459 // alpha-channel requested, there's really only one suitable format
460 format = HAL_PIXEL_FORMAT_RGBA_8888;
461 } else {
462 EGLint r, g, b;
463 r = g = b = 0;
464 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_RED_SIZE, &r);
465 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_GREEN_SIZE, &g);
466 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_BLUE_SIZE, &b);
467 EGLint colorDepth = r + g + b;
468 if (colorDepth <= 16) {
469 format = HAL_PIXEL_FORMAT_RGB_565;
470 } else {
471 format = HAL_PIXEL_FORMAT_RGBX_8888;
472 }
Jesse Hallc2e41222013-08-08 13:40:22 -0700473 }
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700474
475 // now select a corresponding sRGB format if needed
476 if (attrib_list && dp->haveExtension("EGL_KHR_gl_colorspace")) {
477 for (const EGLint* attr = attrib_list; *attr != EGL_NONE; attr += 2) {
478 if (*attr == EGL_GL_COLORSPACE_KHR) {
Jesse Halla2ba4282013-09-14 21:00:14 -0700479 if (ENABLE_EGL_KHR_GL_COLORSPACE) {
480 format = modifyFormatColorspace(format, *(attr+1));
481 } else {
482 // Normally we'd pass through unhandled attributes to
483 // the driver. But in case the driver implements this
484 // extension but we're disabling it, we want to prevent
485 // it getting through -- support will be broken without
486 // our help.
487 ALOGE("sRGB window surfaces not supported");
488 return setError(EGL_BAD_ATTRIBUTE, EGL_NO_SURFACE);
489 }
Jamie Gennisbee205f2011-07-01 13:12:07 -0700490 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700491 }
492 }
Mathias Agopianf4486c62013-08-28 15:22:29 -0700493#endif
Jesse Hallc2e41222013-08-08 13:40:22 -0700494 if (format != 0) {
495 int err = native_window_set_buffers_format(window, format);
496 if (err != 0) {
497 ALOGE("error setting native window pixel format: %s (%d)",
498 strerror(-err), err);
499 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
500 return setError(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
501 }
502 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700503
Jamie Gennis59769462011-11-19 18:04:43 -0800504 // the EGL spec requires that a new EGLSurface default to swap interval
505 // 1, so explicitly set that on the window here.
506 ANativeWindow* anw = reinterpret_cast<ANativeWindow*>(window);
507 anw->setSwapInterval(anw, 1);
508
Mathias Agopian518ec112011-05-13 16:21:08 -0700509 EGLSurface surface = cnx->egl.eglCreateWindowSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800510 iDpy, config, window, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700511 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700512 egl_surface_t* s = new egl_surface_t(dp.get(), config, window,
513 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700514 return s;
515 }
Mathias Agopian81a63352011-07-29 17:55:48 -0700516
517 // EGLSurface creation failed
518 native_window_set_buffers_format(window, 0);
519 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
Mathias Agopian518ec112011-05-13 16:21:08 -0700520 }
521 return EGL_NO_SURFACE;
522}
523
524EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config,
525 NativePixmapType pixmap,
526 const EGLint *attrib_list)
527{
528 clearError();
529
Jesse Hallb29e5e82012-04-04 16:53:42 -0700530 egl_connection_t* cnx = NULL;
531 egl_display_ptr dp = validate_display_connection(dpy, cnx);
532 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700533 EGLSurface surface = cnx->egl.eglCreatePixmapSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800534 dp->disp.dpy, config, pixmap, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700535 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700536 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
537 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700538 return s;
539 }
540 }
541 return EGL_NO_SURFACE;
542}
543
544EGLSurface eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config,
545 const EGLint *attrib_list)
546{
547 clearError();
548
Jesse Hallb29e5e82012-04-04 16:53:42 -0700549 egl_connection_t* cnx = NULL;
550 egl_display_ptr dp = validate_display_connection(dpy, cnx);
551 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700552 EGLSurface surface = cnx->egl.eglCreatePbufferSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800553 dp->disp.dpy, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700554 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700555 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
556 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700557 return s;
558 }
559 }
560 return EGL_NO_SURFACE;
561}
Jesse Hall47743382013-02-08 11:13:46 -0800562
Mathias Agopian518ec112011-05-13 16:21:08 -0700563EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
564{
565 clearError();
566
Jesse Hallb29e5e82012-04-04 16:53:42 -0700567 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700568 if (!dp) return EGL_FALSE;
569
Jesse Hallb29e5e82012-04-04 16:53:42 -0700570 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700571 if (!_s.get())
572 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700573
574 egl_surface_t * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -0800575 EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -0700576 if (result == EGL_TRUE) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700577 _s.terminate();
578 }
579 return result;
580}
581
582EGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surface,
583 EGLint attribute, EGLint *value)
584{
585 clearError();
586
Jesse Hallb29e5e82012-04-04 16:53:42 -0700587 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700588 if (!dp) return EGL_FALSE;
589
Jesse Hallb29e5e82012-04-04 16:53:42 -0700590 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700591 if (!_s.get())
592 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700593
Mathias Agopian518ec112011-05-13 16:21:08 -0700594 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian7773c432012-02-13 20:06:08 -0800595 return s->cnx->egl.eglQuerySurface(
596 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700597}
598
Jamie Gennise8696a42012-01-15 18:54:57 -0800599void EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800600 ATRACE_CALL();
Jamie Gennise8696a42012-01-15 18:54:57 -0800601 clearError();
602
Jesse Hallb29e5e82012-04-04 16:53:42 -0700603 const egl_display_ptr dp = validate_display(dpy);
Jamie Gennise8696a42012-01-15 18:54:57 -0800604 if (!dp) {
605 return;
606 }
607
Jesse Hallb29e5e82012-04-04 16:53:42 -0700608 SurfaceRef _s(dp.get(), surface);
Jamie Gennise8696a42012-01-15 18:54:57 -0800609 if (!_s.get()) {
610 setError(EGL_BAD_SURFACE, EGL_FALSE);
611 return;
612 }
Jamie Gennise8696a42012-01-15 18:54:57 -0800613}
614
Mathias Agopian518ec112011-05-13 16:21:08 -0700615// ----------------------------------------------------------------------------
616// Contexts
617// ----------------------------------------------------------------------------
618
619EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config,
620 EGLContext share_list, const EGLint *attrib_list)
621{
622 clearError();
623
Jesse Hallb29e5e82012-04-04 16:53:42 -0700624 egl_connection_t* cnx = NULL;
625 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
Michael Chock0673e1e2012-06-21 12:53:17 -0700626 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700627 if (share_list != EGL_NO_CONTEXT) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700628 if (!ContextRef(dp.get(), share_list).get()) {
629 return setError(EGL_BAD_CONTEXT, EGL_NO_CONTEXT);
630 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700631 egl_context_t* const c = get_context(share_list);
632 share_list = c->context;
633 }
634 EGLContext context = cnx->egl.eglCreateContext(
Mathias Agopian7773c432012-02-13 20:06:08 -0800635 dp->disp.dpy, config, share_list, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700636 if (context != EGL_NO_CONTEXT) {
637 // figure out if it's a GLESv1 or GLESv2
638 int version = 0;
639 if (attrib_list) {
640 while (*attrib_list != EGL_NONE) {
641 GLint attr = *attrib_list++;
642 GLint value = *attrib_list++;
643 if (attr == EGL_CONTEXT_CLIENT_VERSION) {
644 if (value == 1) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800645 version = egl_connection_t::GLESv1_INDEX;
Jesse Hall47743382013-02-08 11:13:46 -0800646 } else if (value == 2 || value == 3) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800647 version = egl_connection_t::GLESv2_INDEX;
Mathias Agopian518ec112011-05-13 16:21:08 -0700648 }
649 }
650 };
651 }
Jesse Hallb29e5e82012-04-04 16:53:42 -0700652 egl_context_t* c = new egl_context_t(dpy, context, config, cnx,
653 version);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800654#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800655 if (getEGLDebugLevel() > 0)
Siva Velusamy0469dd62011-11-30 15:05:37 -0800656 GLTrace_eglCreateContext(version, c);
657#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700658 return c;
659 }
660 }
661 return EGL_NO_CONTEXT;
662}
663
664EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
665{
666 clearError();
667
Jesse Hallb29e5e82012-04-04 16:53:42 -0700668 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700669 if (!dp)
670 return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -0700671
Jesse Hallb29e5e82012-04-04 16:53:42 -0700672 ContextRef _c(dp.get(), ctx);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700673 if (!_c.get())
674 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
Jesse Hall47743382013-02-08 11:13:46 -0800675
Mathias Agopian518ec112011-05-13 16:21:08 -0700676 egl_context_t * const c = get_context(ctx);
Mathias Agopianada798b2012-02-13 17:09:30 -0800677 EGLBoolean result = c->cnx->egl.eglDestroyContext(dp->disp.dpy, c->context);
Mathias Agopian518ec112011-05-13 16:21:08 -0700678 if (result == EGL_TRUE) {
679 _c.terminate();
680 }
681 return result;
682}
683
Mathias Agopian518ec112011-05-13 16:21:08 -0700684EGLBoolean eglMakeCurrent( EGLDisplay dpy, EGLSurface draw,
685 EGLSurface read, EGLContext ctx)
686{
687 clearError();
688
Jesse Hallb29e5e82012-04-04 16:53:42 -0700689 egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700690 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
691
Mathias Agopian5b287a62011-05-16 18:58:55 -0700692 // If ctx is not EGL_NO_CONTEXT, read is not EGL_NO_SURFACE, or draw is not
693 // EGL_NO_SURFACE, then an EGL_NOT_INITIALIZED error is generated if dpy is
694 // a valid but uninitialized display.
Mathias Agopian518ec112011-05-13 16:21:08 -0700695 if ( (ctx != EGL_NO_CONTEXT) || (read != EGL_NO_SURFACE) ||
696 (draw != EGL_NO_SURFACE) ) {
697 if (!dp->isReady()) return setError(EGL_NOT_INITIALIZED, EGL_FALSE);
698 }
699
700 // get a reference to the object passed in
Jesse Hallb29e5e82012-04-04 16:53:42 -0700701 ContextRef _c(dp.get(), ctx);
702 SurfaceRef _d(dp.get(), draw);
703 SurfaceRef _r(dp.get(), read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700704
705 // validate the context (if not EGL_NO_CONTEXT)
Mathias Agopian5b287a62011-05-16 18:58:55 -0700706 if ((ctx != EGL_NO_CONTEXT) && !_c.get()) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700707 // EGL_NO_CONTEXT is valid
Michael Chock0673e1e2012-06-21 12:53:17 -0700708 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700709 }
710
711 // these are the underlying implementation's object
712 EGLContext impl_ctx = EGL_NO_CONTEXT;
713 EGLSurface impl_draw = EGL_NO_SURFACE;
714 EGLSurface impl_read = EGL_NO_SURFACE;
715
716 // these are our objects structs passed in
717 egl_context_t * c = NULL;
718 egl_surface_t const * d = NULL;
719 egl_surface_t const * r = NULL;
720
721 // these are the current objects structs
722 egl_context_t * cur_c = get_context(getContext());
Jesse Hall47743382013-02-08 11:13:46 -0800723
Mathias Agopian518ec112011-05-13 16:21:08 -0700724 if (ctx != EGL_NO_CONTEXT) {
725 c = get_context(ctx);
726 impl_ctx = c->context;
727 } else {
728 // no context given, use the implementation of the current context
Michael Chock0673e1e2012-06-21 12:53:17 -0700729 if (draw != EGL_NO_SURFACE || read != EGL_NO_SURFACE) {
730 // calling eglMakeCurrent( ..., !=0, !=0, EGL_NO_CONTEXT);
731 return setError(EGL_BAD_MATCH, EGL_FALSE);
732 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700733 if (cur_c == NULL) {
734 // no current context
Mathias Agopian518ec112011-05-13 16:21:08 -0700735 // not an error, there is just no current context.
736 return EGL_TRUE;
737 }
738 }
739
740 // retrieve the underlying implementation's draw EGLSurface
741 if (draw != EGL_NO_SURFACE) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700742 if (!_d.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700743 d = get_surface(draw);
Mathias Agopian518ec112011-05-13 16:21:08 -0700744 impl_draw = d->surface;
745 }
746
747 // retrieve the underlying implementation's read EGLSurface
748 if (read != EGL_NO_SURFACE) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700749 if (!_r.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700750 r = get_surface(read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700751 impl_read = r->surface;
752 }
753
Mathias Agopian518ec112011-05-13 16:21:08 -0700754
Jesse Hallb29e5e82012-04-04 16:53:42 -0700755 EGLBoolean result = dp->makeCurrent(c, cur_c,
Mathias Agopianfb87e542012-01-30 18:20:52 -0800756 draw, read, ctx,
757 impl_draw, impl_read, impl_ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700758
759 if (result == EGL_TRUE) {
Mathias Agopianfb87e542012-01-30 18:20:52 -0800760 if (c) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700761 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
762 egl_tls_t::setContext(ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800763#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800764 if (getEGLDebugLevel() > 0)
Siva Velusamy93a826f2011-12-14 12:19:56 -0800765 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800766#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700767 _c.acquire();
768 _r.acquire();
769 _d.acquire();
Mathias Agopian518ec112011-05-13 16:21:08 -0700770 } else {
771 setGLHooksThreadSpecific(&gHooksNoContext);
772 egl_tls_t::setContext(EGL_NO_CONTEXT);
773 }
Mathias Agopian5fecea72011-08-25 18:38:24 -0700774 } else {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000775 // this will ALOGE the error
Mathias Agopian63108c32013-09-06 13:36:49 -0700776 egl_connection_t* const cnx = &gEGLImpl;
777 result = setError(cnx->egl.eglGetError(), EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700778 }
779 return result;
780}
781
782
783EGLBoolean eglQueryContext( EGLDisplay dpy, EGLContext ctx,
784 EGLint attribute, EGLint *value)
785{
786 clearError();
787
Jesse Hallb29e5e82012-04-04 16:53:42 -0700788 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700789 if (!dp) return EGL_FALSE;
790
Jesse Hallb29e5e82012-04-04 16:53:42 -0700791 ContextRef _c(dp.get(), ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700792 if (!_c.get()) return setError(EGL_BAD_CONTEXT, EGL_FALSE);
793
Mathias Agopian518ec112011-05-13 16:21:08 -0700794 egl_context_t * const c = get_context(ctx);
Mathias Agopian7773c432012-02-13 20:06:08 -0800795 return c->cnx->egl.eglQueryContext(
796 dp->disp.dpy, c->context, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700797
Mathias Agopian518ec112011-05-13 16:21:08 -0700798}
799
800EGLContext eglGetCurrentContext(void)
801{
802 // could be called before eglInitialize(), but we wouldn't have a context
803 // then, and this function would correctly return EGL_NO_CONTEXT.
804
805 clearError();
806
807 EGLContext ctx = getContext();
808 return ctx;
809}
810
811EGLSurface eglGetCurrentSurface(EGLint readdraw)
812{
813 // could be called before eglInitialize(), but we wouldn't have a context
814 // then, and this function would correctly return EGL_NO_SURFACE.
815
816 clearError();
817
818 EGLContext ctx = getContext();
819 if (ctx) {
820 egl_context_t const * const c = get_context(ctx);
821 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
822 switch (readdraw) {
823 case EGL_READ: return c->read;
Jesse Hall47743382013-02-08 11:13:46 -0800824 case EGL_DRAW: return c->draw;
Mathias Agopian518ec112011-05-13 16:21:08 -0700825 default: return setError(EGL_BAD_PARAMETER, EGL_NO_SURFACE);
826 }
827 }
828 return EGL_NO_SURFACE;
829}
830
831EGLDisplay eglGetCurrentDisplay(void)
832{
833 // could be called before eglInitialize(), but we wouldn't have a context
834 // then, and this function would correctly return EGL_NO_DISPLAY.
835
836 clearError();
837
838 EGLContext ctx = getContext();
839 if (ctx) {
840 egl_context_t const * const c = get_context(ctx);
841 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
842 return c->dpy;
843 }
844 return EGL_NO_DISPLAY;
845}
846
847EGLBoolean eglWaitGL(void)
848{
Mathias Agopian518ec112011-05-13 16:21:08 -0700849 clearError();
850
Mathias Agopianada798b2012-02-13 17:09:30 -0800851 egl_connection_t* const cnx = &gEGLImpl;
852 if (!cnx->dso)
853 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
854
855 return cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -0700856}
857
858EGLBoolean eglWaitNative(EGLint engine)
859{
Mathias Agopian518ec112011-05-13 16:21:08 -0700860 clearError();
861
Mathias Agopianada798b2012-02-13 17:09:30 -0800862 egl_connection_t* const cnx = &gEGLImpl;
863 if (!cnx->dso)
864 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
865
866 return cnx->egl.eglWaitNative(engine);
Mathias Agopian518ec112011-05-13 16:21:08 -0700867}
868
869EGLint eglGetError(void)
870{
Mathias Agopianada798b2012-02-13 17:09:30 -0800871 EGLint err = EGL_SUCCESS;
872 egl_connection_t* const cnx = &gEGLImpl;
873 if (cnx->dso) {
874 err = cnx->egl.eglGetError();
Mathias Agopian518ec112011-05-13 16:21:08 -0700875 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800876 if (err == EGL_SUCCESS) {
877 err = egl_tls_t::getError();
878 }
879 return err;
Mathias Agopian518ec112011-05-13 16:21:08 -0700880}
881
Jesse Hallc07b5202013-07-04 12:08:16 -0700882static __eglMustCastToProperFunctionPointerType findBuiltinGLWrapper(
883 const char* procname) {
884 const egl_connection_t* cnx = &gEGLImpl;
885 void* proc = NULL;
886
887 proc = dlsym(cnx->libGles2, procname);
888 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
889
890 proc = dlsym(cnx->libGles1, procname);
891 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
892
893 return NULL;
894}
895
Mathias Agopian518ec112011-05-13 16:21:08 -0700896__eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname)
897{
898 // eglGetProcAddress() could be the very first function called
899 // in which case we must make sure we've initialized ourselves, this
900 // happens the first time egl_get_display() is called.
901
902 clearError();
903
904 if (egl_init_drivers() == EGL_FALSE) {
905 setError(EGL_BAD_PARAMETER, NULL);
906 return NULL;
907 }
908
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700909 if (FILTER_EXTENSIONS(procname)) {
Jamie Gennisaca51c02011-11-03 17:42:43 -0700910 return NULL;
911 }
912
Mathias Agopian518ec112011-05-13 16:21:08 -0700913 __eglMustCastToProperFunctionPointerType addr;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700914 addr = findProcAddress(procname, sExtensionMap, NELEM(sExtensionMap));
Mathias Agopian518ec112011-05-13 16:21:08 -0700915 if (addr) return addr;
916
Jesse Hallc07b5202013-07-04 12:08:16 -0700917 addr = findBuiltinGLWrapper(procname);
918 if (addr) return addr;
Jamie Gennisaca51c02011-11-03 17:42:43 -0700919
Mathias Agopian518ec112011-05-13 16:21:08 -0700920 // this protects accesses to sGLExtentionMap and sGLExtentionSlot
921 pthread_mutex_lock(&sExtensionMapMutex);
922
923 /*
924 * Since eglGetProcAddress() is not associated to anything, it needs
925 * to return a function pointer that "works" regardless of what
926 * the current context is.
927 *
928 * For this reason, we return a "forwarder", a small stub that takes
929 * care of calling the function associated with the context
930 * currently bound.
931 *
932 * We first look for extensions we've already resolved, if we're seeing
933 * this extension for the first time, we go through all our
934 * implementations and call eglGetProcAddress() and record the
935 * result in the appropriate implementation hooks and return the
936 * address of the forwarder corresponding to that hook set.
937 *
938 */
939
940 const String8 name(procname);
941 addr = sGLExtentionMap.valueFor(name);
942 const int slot = sGLExtentionSlot;
943
Steve Blocke6f43dd2012-01-06 19:20:56 +0000944 ALOGE_IF(slot >= MAX_NUMBER_OF_GL_EXTENSIONS,
Mathias Agopian518ec112011-05-13 16:21:08 -0700945 "no more slots for eglGetProcAddress(\"%s\")",
946 procname);
947
Siva Velusamy0469dd62011-11-30 15:05:37 -0800948#if EGL_TRACE
949 gl_hooks_t *debugHooks = GLTrace_getGLHooks();
950#endif
951
Mathias Agopian518ec112011-05-13 16:21:08 -0700952 if (!addr && (slot < MAX_NUMBER_OF_GL_EXTENSIONS)) {
953 bool found = false;
Mathias Agopianada798b2012-02-13 17:09:30 -0800954
955 egl_connection_t* const cnx = &gEGLImpl;
956 if (cnx->dso && cnx->egl.eglGetProcAddress) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800957 // Extensions are independent of the bound context
luliuhui69d10072012-08-30 11:15:36 +0800958 addr =
Mathias Agopian7773c432012-02-13 20:06:08 -0800959 cnx->hooks[egl_connection_t::GLESv1_INDEX]->ext.extensions[slot] =
960 cnx->hooks[egl_connection_t::GLESv2_INDEX]->ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700961#if EGL_TRACE
Mathias Agopianada798b2012-02-13 17:09:30 -0800962 debugHooks->ext.extensions[slot] =
963 gHooksTrace.ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700964#endif
Mathias Agopianada798b2012-02-13 17:09:30 -0800965 cnx->egl.eglGetProcAddress(procname);
luliuhui69d10072012-08-30 11:15:36 +0800966 if (addr) found = true;
Mathias Agopian518ec112011-05-13 16:21:08 -0700967 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800968
Mathias Agopian518ec112011-05-13 16:21:08 -0700969 if (found) {
970 addr = gExtensionForwarders[slot];
Mathias Agopian518ec112011-05-13 16:21:08 -0700971 sGLExtentionMap.add(name, addr);
972 sGLExtentionSlot++;
973 }
974 }
975
976 pthread_mutex_unlock(&sExtensionMapMutex);
977 return addr;
978}
979
Jamie Gennis28ef8d72012-04-05 20:34:54 -0700980class FrameCompletionThread : public Thread {
981public:
982
983 static void queueSync(EGLSyncKHR sync) {
984 static sp<FrameCompletionThread> thread(new FrameCompletionThread);
985 static bool running = false;
986 if (!running) {
987 thread->run("GPUFrameCompletion");
988 running = true;
989 }
990 {
991 Mutex::Autolock lock(thread->mMutex);
992 ScopedTrace st(ATRACE_TAG, String8::format("kicked off frame %d",
993 thread->mFramesQueued).string());
994 thread->mQueue.push_back(sync);
995 thread->mCondition.signal();
996 thread->mFramesQueued++;
997 ATRACE_INT("GPU Frames Outstanding", thread->mQueue.size());
998 }
999 }
1000
1001private:
1002 FrameCompletionThread() : mFramesQueued(0), mFramesCompleted(0) {}
1003
1004 virtual bool threadLoop() {
1005 EGLSyncKHR sync;
1006 uint32_t frameNum;
1007 {
1008 Mutex::Autolock lock(mMutex);
1009 while (mQueue.isEmpty()) {
1010 mCondition.wait(mMutex);
1011 }
1012 sync = mQueue[0];
1013 frameNum = mFramesCompleted;
1014 }
1015 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
1016 {
1017 ScopedTrace st(ATRACE_TAG, String8::format("waiting for frame %d",
1018 frameNum).string());
1019 EGLint result = eglClientWaitSyncKHR(dpy, sync, 0, EGL_FOREVER_KHR);
1020 if (result == EGL_FALSE) {
1021 ALOGE("FrameCompletion: error waiting for fence: %#x", eglGetError());
1022 } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
1023 ALOGE("FrameCompletion: timeout waiting for fence");
1024 }
1025 eglDestroySyncKHR(dpy, sync);
1026 }
1027 {
1028 Mutex::Autolock lock(mMutex);
1029 mQueue.removeAt(0);
1030 mFramesCompleted++;
1031 ATRACE_INT("GPU Frames Outstanding", mQueue.size());
1032 }
1033 return true;
1034 }
1035
1036 uint32_t mFramesQueued;
1037 uint32_t mFramesCompleted;
1038 Vector<EGLSyncKHR> mQueue;
1039 Condition mCondition;
1040 Mutex mMutex;
1041};
1042
Mathias Agopian518ec112011-05-13 16:21:08 -07001043EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface draw)
1044{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001045 ATRACE_CALL();
Mathias Agopian518ec112011-05-13 16:21:08 -07001046 clearError();
1047
Jesse Hallb29e5e82012-04-04 16:53:42 -07001048 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001049 if (!dp) return EGL_FALSE;
1050
Jesse Hallb29e5e82012-04-04 16:53:42 -07001051 SurfaceRef _s(dp.get(), draw);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001052 if (!_s.get())
1053 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001054
Siva Velusamy0469dd62011-11-30 15:05:37 -08001055#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -08001056 gl_hooks_t const *trace_hooks = getGLTraceThreadSpecific();
1057 if (getEGLDebugLevel() > 0) {
1058 if (trace_hooks == NULL) {
1059 if (GLTrace_start() < 0) {
1060 ALOGE("Disabling Tracer for OpenGL ES");
1061 setEGLDebugLevel(0);
1062 } else {
1063 // switch over to the trace version of hooks
1064 EGLContext ctx = egl_tls_t::getContext();
1065 egl_context_t * const c = get_context(ctx);
1066 if (c) {
1067 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1068 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
1069 }
1070 }
1071 }
1072
Siva Velusamy0469dd62011-11-30 15:05:37 -08001073 GLTrace_eglSwapBuffers(dpy, draw);
Siva Velusamya73a9772012-12-18 14:56:55 -08001074 } else if (trace_hooks != NULL) {
1075 // tracing is now disabled, so switch back to the non trace version
1076 EGLContext ctx = egl_tls_t::getContext();
1077 egl_context_t * const c = get_context(ctx);
1078 if (c) setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1079 GLTrace_stop();
1080 }
Siva Velusamy0469dd62011-11-30 15:05:37 -08001081#endif
1082
Mathias Agopian518ec112011-05-13 16:21:08 -07001083 egl_surface_t const * const s = get_surface(draw);
Mathias Agopian7db993a2012-03-25 00:49:46 -07001084
Mathias Agopianed6d08b2013-04-16 16:39:46 -07001085 if (CC_UNLIKELY(dp->traceGpuCompletion)) {
1086 EGLSyncKHR sync = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL);
1087 if (sync != EGL_NO_SYNC_KHR) {
1088 FrameCompletionThread::queueSync(sync);
1089 }
1090 }
1091
Mathias Agopian7db993a2012-03-25 00:49:46 -07001092 if (CC_UNLIKELY(dp->finishOnSwap)) {
1093 uint32_t pixel;
1094 egl_context_t * const c = get_context( egl_tls_t::getContext() );
1095 if (c) {
1096 // glReadPixels() ensures that the frame is complete
1097 s->cnx->hooks[c->version]->gl.glReadPixels(0,0,1,1,
1098 GL_RGBA,GL_UNSIGNED_BYTE,&pixel);
1099 }
1100 }
1101
Mathias Agopianed6d08b2013-04-16 16:39:46 -07001102 return s->cnx->egl.eglSwapBuffers(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001103}
1104
1105EGLBoolean eglCopyBuffers( EGLDisplay dpy, EGLSurface surface,
1106 NativePixmapType target)
1107{
1108 clearError();
1109
Jesse Hallb29e5e82012-04-04 16:53:42 -07001110 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001111 if (!dp) return EGL_FALSE;
1112
Jesse Hallb29e5e82012-04-04 16:53:42 -07001113 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001114 if (!_s.get())
1115 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001116
Mathias Agopian518ec112011-05-13 16:21:08 -07001117 egl_surface_t const * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -08001118 return s->cnx->egl.eglCopyBuffers(dp->disp.dpy, s->surface, target);
Mathias Agopian518ec112011-05-13 16:21:08 -07001119}
1120
1121const char* eglQueryString(EGLDisplay dpy, EGLint name)
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 (const char *) NULL;
1127
1128 switch (name) {
1129 case EGL_VENDOR:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001130 return dp->getVendorString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001131 case EGL_VERSION:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001132 return dp->getVersionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001133 case EGL_EXTENSIONS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001134 return dp->getExtensionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001135 case EGL_CLIENT_APIS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001136 return dp->getClientApiString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001137 }
1138 return setError(EGL_BAD_PARAMETER, (const char *)0);
1139}
1140
Mathias Agopianca088332013-03-28 17:44:13 -07001141EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name)
1142{
1143 clearError();
1144
1145 const egl_display_ptr dp = validate_display(dpy);
1146 if (!dp) return (const char *) NULL;
1147
1148 switch (name) {
1149 case EGL_VENDOR:
1150 return dp->disp.queryString.vendor;
1151 case EGL_VERSION:
1152 return dp->disp.queryString.version;
1153 case EGL_EXTENSIONS:
1154 return dp->disp.queryString.extensions;
1155 case EGL_CLIENT_APIS:
1156 return dp->disp.queryString.clientApi;
1157 }
1158 return setError(EGL_BAD_PARAMETER, (const char *)0);
1159}
Mathias Agopian518ec112011-05-13 16:21:08 -07001160
1161// ----------------------------------------------------------------------------
1162// EGL 1.1
1163// ----------------------------------------------------------------------------
1164
1165EGLBoolean eglSurfaceAttrib(
1166 EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
1167{
1168 clearError();
1169
Jesse Hallb29e5e82012-04-04 16:53:42 -07001170 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001171 if (!dp) return EGL_FALSE;
1172
Jesse Hallb29e5e82012-04-04 16:53:42 -07001173 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001174 if (!_s.get())
1175 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001176
Mathias Agopian518ec112011-05-13 16:21:08 -07001177 egl_surface_t const * const s = get_surface(surface);
1178 if (s->cnx->egl.eglSurfaceAttrib) {
1179 return s->cnx->egl.eglSurfaceAttrib(
Mathias Agopianada798b2012-02-13 17:09:30 -08001180 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001181 }
1182 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1183}
1184
1185EGLBoolean eglBindTexImage(
1186 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1187{
1188 clearError();
1189
Jesse Hallb29e5e82012-04-04 16:53:42 -07001190 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001191 if (!dp) return EGL_FALSE;
1192
Jesse Hallb29e5e82012-04-04 16:53:42 -07001193 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001194 if (!_s.get())
1195 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001196
Mathias Agopian518ec112011-05-13 16:21:08 -07001197 egl_surface_t const * const s = get_surface(surface);
1198 if (s->cnx->egl.eglBindTexImage) {
1199 return s->cnx->egl.eglBindTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001200 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001201 }
1202 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1203}
1204
1205EGLBoolean eglReleaseTexImage(
1206 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1207{
1208 clearError();
1209
Jesse Hallb29e5e82012-04-04 16:53:42 -07001210 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001211 if (!dp) return EGL_FALSE;
1212
Jesse Hallb29e5e82012-04-04 16:53:42 -07001213 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001214 if (!_s.get())
1215 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001216
Mathias Agopian518ec112011-05-13 16:21:08 -07001217 egl_surface_t const * const s = get_surface(surface);
1218 if (s->cnx->egl.eglReleaseTexImage) {
1219 return s->cnx->egl.eglReleaseTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001220 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001221 }
1222 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1223}
1224
1225EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
1226{
1227 clearError();
1228
Jesse Hallb29e5e82012-04-04 16:53:42 -07001229 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001230 if (!dp) return EGL_FALSE;
1231
1232 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001233 egl_connection_t* const cnx = &gEGLImpl;
1234 if (cnx->dso && cnx->egl.eglSwapInterval) {
1235 res = cnx->egl.eglSwapInterval(dp->disp.dpy, interval);
Mathias Agopian518ec112011-05-13 16:21:08 -07001236 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001237
Mathias Agopian518ec112011-05-13 16:21:08 -07001238 return res;
1239}
1240
1241
1242// ----------------------------------------------------------------------------
1243// EGL 1.2
1244// ----------------------------------------------------------------------------
1245
1246EGLBoolean eglWaitClient(void)
1247{
1248 clearError();
1249
Mathias Agopianada798b2012-02-13 17:09:30 -08001250 egl_connection_t* const cnx = &gEGLImpl;
1251 if (!cnx->dso)
1252 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
1253
1254 EGLBoolean res;
1255 if (cnx->egl.eglWaitClient) {
1256 res = cnx->egl.eglWaitClient();
1257 } else {
1258 res = cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -07001259 }
1260 return res;
1261}
1262
1263EGLBoolean eglBindAPI(EGLenum api)
1264{
1265 clearError();
1266
1267 if (egl_init_drivers() == EGL_FALSE) {
1268 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1269 }
1270
1271 // bind this API on all EGLs
1272 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001273 egl_connection_t* const cnx = &gEGLImpl;
1274 if (cnx->dso && cnx->egl.eglBindAPI) {
1275 res = cnx->egl.eglBindAPI(api);
Mathias Agopian518ec112011-05-13 16:21:08 -07001276 }
1277 return res;
1278}
1279
1280EGLenum eglQueryAPI(void)
1281{
1282 clearError();
1283
1284 if (egl_init_drivers() == EGL_FALSE) {
1285 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1286 }
1287
Mathias Agopianada798b2012-02-13 17:09:30 -08001288 egl_connection_t* const cnx = &gEGLImpl;
1289 if (cnx->dso && cnx->egl.eglQueryAPI) {
1290 return cnx->egl.eglQueryAPI();
Mathias Agopian518ec112011-05-13 16:21:08 -07001291 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001292
Mathias Agopian518ec112011-05-13 16:21:08 -07001293 // or, it can only be OpenGL ES
1294 return EGL_OPENGL_ES_API;
1295}
1296
1297EGLBoolean eglReleaseThread(void)
1298{
1299 clearError();
1300
Mathias Agopian4e620dd2013-05-30 16:07:36 -07001301#if EGL_TRACE
1302 if (getEGLDebugLevel() > 0)
1303 GLTrace_eglReleaseThread();
1304#endif
1305
Mathias Agopian518ec112011-05-13 16:21:08 -07001306 // If there is context bound to the thread, release it
Mathias Agopianfb87e542012-01-30 18:20:52 -08001307 egl_display_t::loseCurrent(get_context(getContext()));
Mathias Agopian518ec112011-05-13 16:21:08 -07001308
Mathias Agopianada798b2012-02-13 17:09:30 -08001309 egl_connection_t* const cnx = &gEGLImpl;
1310 if (cnx->dso && cnx->egl.eglReleaseThread) {
1311 cnx->egl.eglReleaseThread();
Mathias Agopian518ec112011-05-13 16:21:08 -07001312 }
1313 egl_tls_t::clearTLS();
Mathias Agopian518ec112011-05-13 16:21:08 -07001314 return EGL_TRUE;
1315}
1316
1317EGLSurface eglCreatePbufferFromClientBuffer(
1318 EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer,
1319 EGLConfig config, const EGLint *attrib_list)
1320{
1321 clearError();
1322
Jesse Hallb29e5e82012-04-04 16:53:42 -07001323 egl_connection_t* cnx = NULL;
1324 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
1325 if (!dp) return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -07001326 if (cnx->egl.eglCreatePbufferFromClientBuffer) {
1327 return cnx->egl.eglCreatePbufferFromClientBuffer(
Mathias Agopian7773c432012-02-13 20:06:08 -08001328 dp->disp.dpy, buftype, buffer, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001329 }
1330 return setError(EGL_BAD_CONFIG, EGL_NO_SURFACE);
1331}
1332
1333// ----------------------------------------------------------------------------
1334// EGL_EGLEXT_VERSION 3
1335// ----------------------------------------------------------------------------
1336
1337EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface,
1338 const EGLint *attrib_list)
1339{
1340 clearError();
1341
Jesse Hallb29e5e82012-04-04 16:53:42 -07001342 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001343 if (!dp) return EGL_FALSE;
1344
Jesse Hallb29e5e82012-04-04 16:53:42 -07001345 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001346 if (!_s.get())
1347 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001348
1349 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001350 if (s->cnx->egl.eglLockSurfaceKHR) {
1351 return s->cnx->egl.eglLockSurfaceKHR(
Mathias Agopianada798b2012-02-13 17:09:30 -08001352 dp->disp.dpy, s->surface, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001353 }
1354 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1355}
1356
1357EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface)
1358{
1359 clearError();
1360
Jesse Hallb29e5e82012-04-04 16:53:42 -07001361 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001362 if (!dp) return EGL_FALSE;
1363
Jesse Hallb29e5e82012-04-04 16:53:42 -07001364 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001365 if (!_s.get())
1366 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001367
1368 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001369 if (s->cnx->egl.eglUnlockSurfaceKHR) {
Mathias Agopianada798b2012-02-13 17:09:30 -08001370 return s->cnx->egl.eglUnlockSurfaceKHR(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001371 }
1372 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1373}
1374
1375EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1376 EGLClientBuffer buffer, const EGLint *attrib_list)
1377{
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_NO_IMAGE_KHR;
1382
Jesse Hallb29e5e82012-04-04 16:53:42 -07001383 ContextRef _c(dp.get(), ctx);
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001384 egl_context_t * const c = _c.get();
Mathias Agopian518ec112011-05-13 16:21:08 -07001385
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001386 EGLImageKHR result = EGL_NO_IMAGE_KHR;
1387 egl_connection_t* const cnx = &gEGLImpl;
1388 if (cnx->dso && cnx->egl.eglCreateImageKHR) {
1389 result = cnx->egl.eglCreateImageKHR(
1390 dp->disp.dpy,
1391 c ? c->context : EGL_NO_CONTEXT,
1392 target, buffer, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001393 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001394 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001395}
1396
1397EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img)
1398{
1399 clearError();
1400
Jesse Hallb29e5e82012-04-04 16:53:42 -07001401 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001402 if (!dp) return EGL_FALSE;
1403
Steven Holte646a5c52012-06-04 20:02:11 -07001404 EGLBoolean result = EGL_FALSE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001405 egl_connection_t* const cnx = &gEGLImpl;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001406 if (cnx->dso && cnx->egl.eglDestroyImageKHR) {
Steven Holte646a5c52012-06-04 20:02:11 -07001407 result = cnx->egl.eglDestroyImageKHR(dp->disp.dpy, img);
Mathias Agopian518ec112011-05-13 16:21:08 -07001408 }
Steven Holte646a5c52012-06-04 20:02:11 -07001409 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001410}
1411
1412// ----------------------------------------------------------------------------
1413// EGL_EGLEXT_VERSION 5
1414// ----------------------------------------------------------------------------
1415
1416
1417EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list)
1418{
1419 clearError();
1420
Jesse Hallb29e5e82012-04-04 16:53:42 -07001421 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001422 if (!dp) return EGL_NO_SYNC_KHR;
1423
Mathias Agopian518ec112011-05-13 16:21:08 -07001424 EGLSyncKHR result = EGL_NO_SYNC_KHR;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001425 egl_connection_t* const cnx = &gEGLImpl;
1426 if (cnx->dso && cnx->egl.eglCreateSyncKHR) {
1427 result = cnx->egl.eglCreateSyncKHR(dp->disp.dpy, type, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001428 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001429 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001430}
1431
1432EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync)
1433{
1434 clearError();
1435
Jesse Hallb29e5e82012-04-04 16:53:42 -07001436 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001437 if (!dp) return EGL_FALSE;
1438
Mathias Agopian518ec112011-05-13 16:21:08 -07001439 EGLBoolean result = EGL_FALSE;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001440 egl_connection_t* const cnx = &gEGLImpl;
1441 if (cnx->dso && cnx->egl.eglDestroySyncKHR) {
1442 result = cnx->egl.eglDestroySyncKHR(dp->disp.dpy, sync);
Mathias Agopian518ec112011-05-13 16:21:08 -07001443 }
1444 return result;
1445}
1446
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -07001447EGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) {
1448 clearError();
1449
1450 const egl_display_ptr dp = validate_display(dpy);
1451 if (!dp) return EGL_FALSE;
1452
1453 EGLBoolean result = EGL_FALSE;
1454 egl_connection_t* const cnx = &gEGLImpl;
1455 if (cnx->dso && cnx->egl.eglSignalSyncKHR) {
1456 result = cnx->egl.eglSignalSyncKHR(
1457 dp->disp.dpy, sync, mode);
1458 }
1459 return result;
1460}
1461
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001462EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync,
1463 EGLint flags, EGLTimeKHR timeout)
Mathias Agopian518ec112011-05-13 16:21:08 -07001464{
1465 clearError();
1466
Jesse Hallb29e5e82012-04-04 16:53:42 -07001467 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001468 if (!dp) return EGL_FALSE;
1469
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001470 EGLBoolean result = EGL_FALSE;
1471 egl_connection_t* const cnx = &gEGLImpl;
1472 if (cnx->dso && cnx->egl.eglClientWaitSyncKHR) {
1473 result = cnx->egl.eglClientWaitSyncKHR(
1474 dp->disp.dpy, sync, flags, timeout);
Mathias Agopian518ec112011-05-13 16:21:08 -07001475 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001476 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001477}
1478
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001479EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync,
1480 EGLint attribute, EGLint *value)
Mathias Agopian518ec112011-05-13 16:21:08 -07001481{
1482 clearError();
1483
Jesse Hallb29e5e82012-04-04 16:53:42 -07001484 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001485 if (!dp) return EGL_FALSE;
1486
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001487 EGLBoolean result = EGL_FALSE;
1488 egl_connection_t* const cnx = &gEGLImpl;
1489 if (cnx->dso && cnx->egl.eglGetSyncAttribKHR) {
1490 result = cnx->egl.eglGetSyncAttribKHR(
1491 dp->disp.dpy, sync, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001492 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001493 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001494}
1495
1496// ----------------------------------------------------------------------------
Mathias Agopian2bb71682013-03-27 17:32:41 -07001497// EGL_EGLEXT_VERSION 15
1498// ----------------------------------------------------------------------------
1499
1500EGLint eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) {
1501 clearError();
1502 const egl_display_ptr dp = validate_display(dpy);
1503 if (!dp) return EGL_FALSE;
1504 EGLint result = EGL_FALSE;
1505 egl_connection_t* const cnx = &gEGLImpl;
1506 if (cnx->dso && cnx->egl.eglWaitSyncKHR) {
1507 result = cnx->egl.eglWaitSyncKHR(dp->disp.dpy, sync, flags);
1508 }
1509 return result;
1510}
1511
1512// ----------------------------------------------------------------------------
Mathias Agopian518ec112011-05-13 16:21:08 -07001513// ANDROID extensions
1514// ----------------------------------------------------------------------------
1515
Jamie Gennis331841b2012-09-06 14:52:00 -07001516EGLint eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync)
1517{
1518 clearError();
1519
1520 const egl_display_ptr dp = validate_display(dpy);
1521 if (!dp) return EGL_NO_NATIVE_FENCE_FD_ANDROID;
1522
1523 EGLint result = EGL_NO_NATIVE_FENCE_FD_ANDROID;
1524 egl_connection_t* const cnx = &gEGLImpl;
1525 if (cnx->dso && cnx->egl.eglDupNativeFenceFDANDROID) {
1526 result = cnx->egl.eglDupNativeFenceFDANDROID(dp->disp.dpy, sync);
1527 }
1528 return result;
1529}
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001530
Andy McFadden72841452013-03-01 16:25:32 -08001531EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface,
1532 EGLnsecsANDROID time)
1533{
1534 clearError();
1535
1536 const egl_display_ptr dp = validate_display(dpy);
1537 if (!dp) {
1538 return EGL_FALSE;
1539 }
1540
1541 SurfaceRef _s(dp.get(), surface);
1542 if (!_s.get()) {
1543 setError(EGL_BAD_SURFACE, EGL_FALSE);
1544 return EGL_FALSE;
1545 }
1546
1547 egl_surface_t const * const s = get_surface(surface);
1548 native_window_set_buffers_timestamp(s->win.get(), time);
1549
1550 return EGL_TRUE;
1551}
1552
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001553// ----------------------------------------------------------------------------
1554// NVIDIA extensions
1555// ----------------------------------------------------------------------------
1556EGLuint64NV eglGetSystemTimeFrequencyNV()
1557{
1558 clearError();
1559
1560 if (egl_init_drivers() == EGL_FALSE) {
1561 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1562 }
1563
1564 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001565 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001566
Mathias Agopianada798b2012-02-13 17:09:30 -08001567 if (cnx->dso && cnx->egl.eglGetSystemTimeFrequencyNV) {
1568 return cnx->egl.eglGetSystemTimeFrequencyNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001569 }
1570
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001571 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001572}
1573
1574EGLuint64NV eglGetSystemTimeNV()
1575{
1576 clearError();
1577
1578 if (egl_init_drivers() == EGL_FALSE) {
1579 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1580 }
1581
1582 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001583 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001584
Mathias Agopianada798b2012-02-13 17:09:30 -08001585 if (cnx->dso && cnx->egl.eglGetSystemTimeNV) {
1586 return cnx->egl.eglGetSystemTimeNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001587 }
1588
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001589 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001590}