blob: 09ac3fcf04863586ed9937b616d48f37286e2dba [file] [log] [blame]
Jesse Hall47743382013-02-08 11:13:46 -08001/*
Mathias Agopian518ec112011-05-13 16:21:08 -07002 ** Copyright 2007, The Android Open Source Project
3 **
Jesse Hall47743382013-02-08 11:13:46 -08004 ** Licensed under the Apache License, Version 2.0 (the "License");
5 ** you may not use this file except in compliance with the License.
6 ** You may obtain a copy of the License at
Mathias Agopian518ec112011-05-13 16:21:08 -07007 **
Jesse Hall47743382013-02-08 11:13:46 -08008 ** http://www.apache.org/licenses/LICENSE-2.0
Mathias Agopian518ec112011-05-13 16:21:08 -07009 **
Jesse Hall47743382013-02-08 11:13:46 -080010 ** Unless required by applicable law or agreed to in writing, software
11 ** distributed under the License is distributed on an "AS IS" BASIS,
12 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ** See the License for the specific language governing permissions and
Mathias Agopian518ec112011-05-13 16:21:08 -070014 ** limitations under the License.
15 */
16
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080017#define ATRACE_TAG ATRACE_TAG_GRAPHICS
18
Jesse Hallc07b5202013-07-04 12:08:16 -070019#include <dlfcn.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070020#include <ctype.h>
21#include <stdlib.h>
22#include <string.h>
23
24#include <hardware/gralloc.h>
25#include <system/window.h>
26
27#include <EGL/egl.h>
28#include <EGL/eglext.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070029
30#include <cutils/log.h>
31#include <cutils/atomic.h>
Mathias Agopian7db993a2012-03-25 00:49:46 -070032#include <cutils/compiler.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070033#include <cutils/properties.h>
34#include <cutils/memory.h>
35
36#include <utils/KeyedVector.h>
37#include <utils/SortedVector.h>
38#include <utils/String8.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080039#include <utils/Trace.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070040
Mathias Agopian39c24a22013-04-04 23:17:56 -070041#include "../egl_impl.h"
42#include "../glestrace.h"
43#include "../hooks.h"
Mathias Agopian518ec112011-05-13 16:21:08 -070044
45#include "egl_display.h"
Mathias Agopian518ec112011-05-13 16:21:08 -070046#include "egl_object.h"
47#include "egl_tls.h"
Mathias Agopianada798b2012-02-13 17:09:30 -080048#include "egldefs.h"
Mathias Agopian518ec112011-05-13 16:21:08 -070049
50using namespace android;
51
Jesse Halla2ba4282013-09-14 21:00:14 -070052// This extension has not been ratified yet, so can't be shipped.
53// Implementation is incomplete and untested.
54#define ENABLE_EGL_KHR_GL_COLORSPACE 0
55
Mathias Agopian518ec112011-05-13 16:21:08 -070056// ----------------------------------------------------------------------------
57
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070058namespace android {
59
Mathias Agopian518ec112011-05-13 16:21:08 -070060struct extention_map_t {
61 const char* name;
62 __eglMustCastToProperFunctionPointerType address;
63};
64
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070065/*
Jesse Hall21558da2013-08-06 15:31:22 -070066 * This is the list of EGL extensions exposed to applications.
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070067 *
Jesse Hall21558da2013-08-06 15:31:22 -070068 * Some of them (gBuiltinExtensionString) are implemented entirely in this EGL
69 * wrapper and are always available.
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070070 *
Jesse Hall21558da2013-08-06 15:31:22 -070071 * The rest (gExtensionString) depend on support in the EGL driver, and are
72 * only available if the driver supports them. However, some of these must be
73 * supported because they are used by the Android system itself; these are
74 * listd as mandatory below and are required by the CDD. The system *assumes*
75 * the mandatory extensions are present and may not function properly if some
76 * are missing.
77 *
78 * NOTE: Both strings MUST have a single space as the last character.
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070079 */
Jesse Hall21558da2013-08-06 15:31:22 -070080extern char const * const gBuiltinExtensionString =
81 "EGL_KHR_get_all_proc_addresses "
82 "EGL_ANDROID_presentation_time "
83 ;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070084extern char const * const gExtensionString =
85 "EGL_KHR_image " // mandatory
86 "EGL_KHR_image_base " // mandatory
87 "EGL_KHR_image_pixmap "
88 "EGL_KHR_lock_surface "
Jesse Halla2ba4282013-09-14 21:00:14 -070089#if (ENABLE_EGL_KHR_GL_COLORSPACE != 0)
Jesse Hallc2e41222013-08-08 13:40:22 -070090 "EGL_KHR_gl_colorspace "
Jesse Halla2ba4282013-09-14 21:00:14 -070091#endif
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070092 "EGL_KHR_gl_texture_2D_image "
93 "EGL_KHR_gl_texture_cubemap_image "
94 "EGL_KHR_gl_renderbuffer_image "
95 "EGL_KHR_reusable_sync "
96 "EGL_KHR_fence_sync "
Jamie Gennisf6d1c392013-04-25 18:48:41 -070097 "EGL_KHR_create_context "
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -070098 "EGL_EXT_create_context_robustness "
99 "EGL_NV_system_time "
100 "EGL_ANDROID_image_native_buffer " // mandatory
Mathias Agopian2bb71682013-03-27 17:32:41 -0700101 "EGL_KHR_wait_sync " // strongly recommended
Jamie Gennisdbe92452013-09-23 17:22:10 -0700102 "EGL_ANDROID_recordable " // mandatory
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700103 ;
104
105// extensions not exposed to applications but used by the ANDROID system
106// "EGL_ANDROID_blob_cache " // strongly recommended
107// "EGL_IMG_hibernate_process " // optional
108// "EGL_ANDROID_native_fence_sync " // strongly recommended
109// "EGL_ANDROID_framebuffer_target " // mandatory for HWC 1.1
Jamie Gennisdbe92452013-09-23 17:22:10 -0700110// "EGL_ANDROID_image_crop " // optional
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700111
112/*
113 * EGL Extensions entry-points exposed to 3rd party applications
114 * (keep in sync with gExtensionString above)
115 *
116 */
117static const extention_map_t sExtensionMap[] = {
118 // EGL_KHR_lock_surface
Mathias Agopian518ec112011-05-13 16:21:08 -0700119 { "eglLockSurfaceKHR",
120 (__eglMustCastToProperFunctionPointerType)&eglLockSurfaceKHR },
121 { "eglUnlockSurfaceKHR",
122 (__eglMustCastToProperFunctionPointerType)&eglUnlockSurfaceKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700123
124 // EGL_KHR_image, EGL_KHR_image_base
Mathias Agopian518ec112011-05-13 16:21:08 -0700125 { "eglCreateImageKHR",
126 (__eglMustCastToProperFunctionPointerType)&eglCreateImageKHR },
127 { "eglDestroyImageKHR",
128 (__eglMustCastToProperFunctionPointerType)&eglDestroyImageKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700129
130 // EGL_KHR_reusable_sync, EGL_KHR_fence_sync
131 { "eglCreateSyncKHR",
132 (__eglMustCastToProperFunctionPointerType)&eglCreateSyncKHR },
133 { "eglDestroySyncKHR",
134 (__eglMustCastToProperFunctionPointerType)&eglDestroySyncKHR },
135 { "eglClientWaitSyncKHR",
136 (__eglMustCastToProperFunctionPointerType)&eglClientWaitSyncKHR },
137 { "eglSignalSyncKHR",
138 (__eglMustCastToProperFunctionPointerType)&eglSignalSyncKHR },
139 { "eglGetSyncAttribKHR",
140 (__eglMustCastToProperFunctionPointerType)&eglGetSyncAttribKHR },
141
142 // EGL_NV_system_time
Jonas Yang1c3d72a2011-08-26 20:04:39 +0800143 { "eglGetSystemTimeFrequencyNV",
144 (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeFrequencyNV },
145 { "eglGetSystemTimeNV",
146 (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeNV },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700147
Mathias Agopian2bb71682013-03-27 17:32:41 -0700148 // EGL_KHR_wait_sync
149 { "eglWaitSyncKHR",
150 (__eglMustCastToProperFunctionPointerType)&eglWaitSyncKHR },
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700151
152 // EGL_ANDROID_presentation_time
153 { "eglPresentationTimeANDROID",
154 (__eglMustCastToProperFunctionPointerType)&eglPresentationTimeANDROID },
Mathias Agopian518ec112011-05-13 16:21:08 -0700155};
156
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700157/*
158 * These extensions entry-points should not be exposed to applications.
159 * They're used internally by the Android EGL layer.
160 */
161#define FILTER_EXTENSIONS(procname) \
162 (!strcmp((procname), "eglSetBlobCacheFuncsANDROID") || \
163 !strcmp((procname), "eglHibernateProcessIMG") || \
164 !strcmp((procname), "eglAwakenProcessIMG") || \
165 !strcmp((procname), "eglDupNativeFenceFDANDROID"))
166
167
168
Mathias Agopian518ec112011-05-13 16:21:08 -0700169// accesses protected by sExtensionMapMutex
170static DefaultKeyedVector<String8, __eglMustCastToProperFunctionPointerType> sGLExtentionMap;
171static int sGLExtentionSlot = 0;
172static pthread_mutex_t sExtensionMapMutex = PTHREAD_MUTEX_INITIALIZER;
173
174static void(*findProcAddress(const char* name,
175 const extention_map_t* map, size_t n))() {
176 for (uint32_t i=0 ; i<n ; i++) {
177 if (!strcmp(name, map[i].name)) {
178 return map[i].address;
179 }
180 }
181 return NULL;
182}
183
184// ----------------------------------------------------------------------------
185
Mathias Agopian518ec112011-05-13 16:21:08 -0700186extern void setGLHooksThreadSpecific(gl_hooks_t const *value);
187extern EGLBoolean egl_init_drivers();
188extern const __eglMustCastToProperFunctionPointerType gExtensionForwarders[MAX_NUMBER_OF_GL_EXTENSIONS];
Siva Velusamya73a9772012-12-18 14:56:55 -0800189extern int getEGLDebugLevel();
190extern void setEGLDebugLevel(int level);
Mathias Agopian518ec112011-05-13 16:21:08 -0700191extern gl_hooks_t gHooksTrace;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700192
Mathias Agopian518ec112011-05-13 16:21:08 -0700193} // namespace android;
194
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700195
Mathias Agopian518ec112011-05-13 16:21:08 -0700196// ----------------------------------------------------------------------------
197
198static inline void clearError() { egl_tls_t::clearError(); }
199static inline EGLContext getContext() { return egl_tls_t::getContext(); }
200
201// ----------------------------------------------------------------------------
202
203EGLDisplay eglGetDisplay(EGLNativeDisplayType display)
204{
205 clearError();
206
Dan Stoza4864e852014-01-17 11:38:34 -0800207 uintptr_t index = reinterpret_cast<uintptr_t>(display);
Mathias Agopian518ec112011-05-13 16:21:08 -0700208 if (index >= NUM_DISPLAYS) {
209 return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
210 }
211
212 if (egl_init_drivers() == EGL_FALSE) {
213 return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
214 }
215
216 EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display);
217 return dpy;
218}
219
220// ----------------------------------------------------------------------------
221// Initialization
222// ----------------------------------------------------------------------------
223
224EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
225{
226 clearError();
227
Jesse Hallb29e5e82012-04-04 16:53:42 -0700228 egl_display_ptr dp = get_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700229 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
230
231 EGLBoolean res = dp->initialize(major, minor);
232
233 return res;
234}
235
236EGLBoolean eglTerminate(EGLDisplay dpy)
237{
238 // NOTE: don't unload the drivers b/c some APIs can be called
239 // after eglTerminate() has been called. eglTerminate() only
240 // terminates an EGLDisplay, not a EGL itself.
241
242 clearError();
243
Jesse Hallb29e5e82012-04-04 16:53:42 -0700244 egl_display_ptr dp = get_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700245 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
246
247 EGLBoolean res = dp->terminate();
Jesse Hall47743382013-02-08 11:13:46 -0800248
Mathias Agopian518ec112011-05-13 16:21:08 -0700249 return res;
250}
251
252// ----------------------------------------------------------------------------
253// configuration
254// ----------------------------------------------------------------------------
255
256EGLBoolean eglGetConfigs( EGLDisplay dpy,
257 EGLConfig *configs,
258 EGLint config_size, EGLint *num_config)
259{
260 clearError();
261
Jesse Hallb29e5e82012-04-04 16:53:42 -0700262 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700263 if (!dp) return EGL_FALSE;
264
Mathias Agopian7773c432012-02-13 20:06:08 -0800265 if (num_config==0) {
266 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700267 }
268
Mathias Agopian7773c432012-02-13 20:06:08 -0800269 EGLBoolean res = EGL_FALSE;
270 *num_config = 0;
271
272 egl_connection_t* const cnx = &gEGLImpl;
273 if (cnx->dso) {
274 res = cnx->egl.eglGetConfigs(
275 dp->disp.dpy, configs, config_size, num_config);
Mathias Agopian518ec112011-05-13 16:21:08 -0700276 }
Mathias Agopian7773c432012-02-13 20:06:08 -0800277
278 return res;
Mathias Agopian518ec112011-05-13 16:21:08 -0700279}
280
281EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list,
282 EGLConfig *configs, EGLint config_size,
283 EGLint *num_config)
284{
285 clearError();
286
Jesse Hallb29e5e82012-04-04 16:53:42 -0700287 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700288 if (!dp) return EGL_FALSE;
289
290 if (num_config==0) {
291 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
292 }
293
Mathias Agopian518ec112011-05-13 16:21:08 -0700294 EGLBoolean res = EGL_FALSE;
295 *num_config = 0;
296
Mathias Agopianada798b2012-02-13 17:09:30 -0800297 egl_connection_t* const cnx = &gEGLImpl;
298 if (cnx->dso) {
Romain Guy1cffc802012-10-15 18:13:05 -0700299 if (attrib_list) {
300 char value[PROPERTY_VALUE_MAX];
301 property_get("debug.egl.force_msaa", value, "false");
302
303 if (!strcmp(value, "true")) {
304 size_t attribCount = 0;
305 EGLint attrib = attrib_list[0];
306
307 // Only enable MSAA if the context is OpenGL ES 2.0 and
Romain Guybe3c3e42012-10-15 19:25:18 -0700308 // if no caveat is requested
Romain Guy1cffc802012-10-15 18:13:05 -0700309 const EGLint *attribRendererable = NULL;
310 const EGLint *attribCaveat = NULL;
311
312 // Count the number of attributes and look for
Romain Guybe3c3e42012-10-15 19:25:18 -0700313 // EGL_RENDERABLE_TYPE and EGL_CONFIG_CAVEAT
Romain Guy1cffc802012-10-15 18:13:05 -0700314 while (attrib != EGL_NONE) {
315 attrib = attrib_list[attribCount];
316 switch (attrib) {
317 case EGL_RENDERABLE_TYPE:
318 attribRendererable = &attrib_list[attribCount];
319 break;
320 case EGL_CONFIG_CAVEAT:
321 attribCaveat = &attrib_list[attribCount];
322 break;
323 }
324 attribCount++;
325 }
326
327 if (attribRendererable && attribRendererable[1] == EGL_OPENGL_ES2_BIT &&
328 (!attribCaveat || attribCaveat[1] != EGL_NONE)) {
Jesse Hall47743382013-02-08 11:13:46 -0800329
Romain Guy1cffc802012-10-15 18:13:05 -0700330 // Insert 2 extra attributes to force-enable MSAA 4x
331 EGLint aaAttribs[attribCount + 4];
332 aaAttribs[0] = EGL_SAMPLE_BUFFERS;
333 aaAttribs[1] = 1;
334 aaAttribs[2] = EGL_SAMPLES;
335 aaAttribs[3] = 4;
336
337 memcpy(&aaAttribs[4], attrib_list, attribCount * sizeof(EGLint));
338
339 EGLint numConfigAA;
340 EGLBoolean resAA = cnx->egl.eglChooseConfig(
341 dp->disp.dpy, aaAttribs, configs, config_size, &numConfigAA);
342
343 if (resAA == EGL_TRUE && numConfigAA > 0) {
344 ALOGD("Enabling MSAA 4x");
345 *num_config = numConfigAA;
346 return resAA;
347 }
348 }
349 }
350 }
351
Mathias Agopian7773c432012-02-13 20:06:08 -0800352 res = cnx->egl.eglChooseConfig(
353 dp->disp.dpy, attrib_list, configs, config_size, num_config);
Mathias Agopian518ec112011-05-13 16:21:08 -0700354 }
355 return res;
356}
357
358EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,
359 EGLint attribute, EGLint *value)
360{
361 clearError();
362
Jesse Hallb29e5e82012-04-04 16:53:42 -0700363 egl_connection_t* cnx = NULL;
364 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
365 if (!dp) return EGL_FALSE;
Jesse Hall47743382013-02-08 11:13:46 -0800366
Mathias Agopian518ec112011-05-13 16:21:08 -0700367 return cnx->egl.eglGetConfigAttrib(
Mathias Agopian7773c432012-02-13 20:06:08 -0800368 dp->disp.dpy, config, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700369}
370
371// ----------------------------------------------------------------------------
372// surfaces
373// ----------------------------------------------------------------------------
374
Jesse Halla2ba4282013-09-14 21:00:14 -0700375// The EGL_KHR_gl_colorspace spec hasn't been ratified yet, so these haven't
Jesse Hallc2e41222013-08-08 13:40:22 -0700376// been added to the Khronos egl.h.
377#define EGL_GL_COLORSPACE_KHR EGL_VG_COLORSPACE
378#define EGL_GL_COLORSPACE_SRGB_KHR EGL_VG_COLORSPACE_sRGB
379#define EGL_GL_COLORSPACE_LINEAR_KHR EGL_VG_COLORSPACE_LINEAR
380
381// Turn linear formats into corresponding sRGB formats when colorspace is
382// EGL_GL_COLORSPACE_SRGB_KHR, or turn sRGB formats into corresponding linear
383// formats when colorspace is EGL_GL_COLORSPACE_LINEAR_KHR. In any cases where
384// the modification isn't possible, the original format is returned.
385static int modifyFormatColorspace(int fmt, EGLint colorspace) {
386 if (colorspace == EGL_GL_COLORSPACE_LINEAR_KHR) {
387 switch (fmt) {
388 case HAL_PIXEL_FORMAT_sRGB_A_8888: return HAL_PIXEL_FORMAT_RGBA_8888;
Jesse Hallbc2a90b2013-08-16 07:50:11 -0700389 case HAL_PIXEL_FORMAT_sRGB_X_8888: return HAL_PIXEL_FORMAT_RGBX_8888;
Jesse Hallc2e41222013-08-08 13:40:22 -0700390 }
391 } else if (colorspace == EGL_GL_COLORSPACE_SRGB_KHR) {
392 switch (fmt) {
393 case HAL_PIXEL_FORMAT_RGBA_8888: return HAL_PIXEL_FORMAT_sRGB_A_8888;
Jesse Hallbc2a90b2013-08-16 07:50:11 -0700394 case HAL_PIXEL_FORMAT_RGBX_8888: return HAL_PIXEL_FORMAT_sRGB_X_8888;
Jesse Hallc2e41222013-08-08 13:40:22 -0700395 }
396 }
397 return fmt;
398}
399
Mathias Agopian518ec112011-05-13 16:21:08 -0700400EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
401 NativeWindowType window,
402 const EGLint *attrib_list)
403{
404 clearError();
405
Jesse Hallb29e5e82012-04-04 16:53:42 -0700406 egl_connection_t* cnx = NULL;
407 egl_display_ptr dp = validate_display_connection(dpy, cnx);
408 if (dp) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800409 EGLDisplay iDpy = dp->disp.dpy;
Mathias Agopian518ec112011-05-13 16:21:08 -0700410
Mathias Agopian81a63352011-07-29 17:55:48 -0700411 if (native_window_api_connect(window, NATIVE_WINDOW_API_EGL) != OK) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000412 ALOGE("EGLNativeWindowType %p already connected to another API",
Mathias Agopian81a63352011-07-29 17:55:48 -0700413 window);
Jonathan Hamilton77a9b4a2013-07-17 09:41:42 -0700414 return setError(EGL_BAD_ALLOC, EGL_NO_SURFACE);
Mathias Agopian81a63352011-07-29 17:55:48 -0700415 }
416
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700417 // Set the native window's buffers format to match what this config requests.
Jesse Hallc2e41222013-08-08 13:40:22 -0700418 // Whether to use sRGB gamma is not part of the EGLconfig, but is part
419 // of our native format. So if sRGB gamma is requested, we have to
420 // modify the EGLconfig's format before setting the native window's
421 // format.
Mathias Agopianf4486c62013-08-28 15:22:29 -0700422#if WORKAROUND_BUG_10194508
423#warning "WORKAROUND_10194508 enabled"
424 EGLint format;
425 if (!cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_NATIVE_VISUAL_ID,
426 &format)) {
427 ALOGE("eglGetConfigAttrib(EGL_NATIVE_VISUAL_ID) failed: %#x",
428 eglGetError());
429 format = 0;
430 }
431 if (attrib_list) {
432 for (const EGLint* attr = attrib_list; *attr != EGL_NONE;
433 attr += 2) {
434 if (*attr == EGL_GL_COLORSPACE_KHR &&
435 dp->haveExtension("EGL_KHR_gl_colorspace")) {
Jesse Halla2ba4282013-09-14 21:00:14 -0700436 if (ENABLE_EGL_KHR_GL_COLORSPACE) {
437 format = modifyFormatColorspace(format, *(attr+1));
438 } else {
439 // Normally we'd pass through unhandled attributes to
440 // the driver. But in case the driver implements this
441 // extension but we're disabling it, we want to prevent
442 // it getting through -- support will be broken without
443 // our help.
444 ALOGE("sRGB window surfaces not supported");
445 return setError(EGL_BAD_ATTRIBUTE, EGL_NO_SURFACE);
446 }
Mathias Agopianf4486c62013-08-28 15:22:29 -0700447 }
448 }
449 }
450#else
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700451 // by default, just pick RGBA_8888
452 EGLint format = HAL_PIXEL_FORMAT_RGBA_8888;
453
454 EGLint a = 0;
455 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_ALPHA_SIZE, &a);
456 if (a > 0) {
457 // alpha-channel requested, there's really only one suitable format
458 format = HAL_PIXEL_FORMAT_RGBA_8888;
459 } else {
460 EGLint r, g, b;
461 r = g = b = 0;
462 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_RED_SIZE, &r);
463 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_GREEN_SIZE, &g);
464 cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_BLUE_SIZE, &b);
465 EGLint colorDepth = r + g + b;
466 if (colorDepth <= 16) {
467 format = HAL_PIXEL_FORMAT_RGB_565;
468 } else {
469 format = HAL_PIXEL_FORMAT_RGBX_8888;
470 }
Jesse Hallc2e41222013-08-08 13:40:22 -0700471 }
Mathias Agopian0f288fc2013-08-21 16:36:34 -0700472
473 // now select a corresponding sRGB format if needed
474 if (attrib_list && dp->haveExtension("EGL_KHR_gl_colorspace")) {
475 for (const EGLint* attr = attrib_list; *attr != EGL_NONE; attr += 2) {
476 if (*attr == EGL_GL_COLORSPACE_KHR) {
Jesse Halla2ba4282013-09-14 21:00:14 -0700477 if (ENABLE_EGL_KHR_GL_COLORSPACE) {
478 format = modifyFormatColorspace(format, *(attr+1));
479 } else {
480 // Normally we'd pass through unhandled attributes to
481 // the driver. But in case the driver implements this
482 // extension but we're disabling it, we want to prevent
483 // it getting through -- support will be broken without
484 // our help.
485 ALOGE("sRGB window surfaces not supported");
486 return setError(EGL_BAD_ATTRIBUTE, EGL_NO_SURFACE);
487 }
Jamie Gennisbee205f2011-07-01 13:12:07 -0700488 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700489 }
490 }
Mathias Agopianf4486c62013-08-28 15:22:29 -0700491#endif
Jesse Hallc2e41222013-08-08 13:40:22 -0700492 if (format != 0) {
493 int err = native_window_set_buffers_format(window, format);
494 if (err != 0) {
495 ALOGE("error setting native window pixel format: %s (%d)",
496 strerror(-err), err);
497 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
498 return setError(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
499 }
500 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700501
Jamie Gennis59769462011-11-19 18:04:43 -0800502 // the EGL spec requires that a new EGLSurface default to swap interval
503 // 1, so explicitly set that on the window here.
504 ANativeWindow* anw = reinterpret_cast<ANativeWindow*>(window);
505 anw->setSwapInterval(anw, 1);
506
Mathias Agopian518ec112011-05-13 16:21:08 -0700507 EGLSurface surface = cnx->egl.eglCreateWindowSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800508 iDpy, config, window, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700509 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700510 egl_surface_t* s = new egl_surface_t(dp.get(), config, window,
511 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700512 return s;
513 }
Mathias Agopian81a63352011-07-29 17:55:48 -0700514
515 // EGLSurface creation failed
516 native_window_set_buffers_format(window, 0);
517 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
Mathias Agopian518ec112011-05-13 16:21:08 -0700518 }
519 return EGL_NO_SURFACE;
520}
521
522EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config,
523 NativePixmapType pixmap,
524 const EGLint *attrib_list)
525{
526 clearError();
527
Jesse Hallb29e5e82012-04-04 16:53:42 -0700528 egl_connection_t* cnx = NULL;
529 egl_display_ptr dp = validate_display_connection(dpy, cnx);
530 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700531 EGLSurface surface = cnx->egl.eglCreatePixmapSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800532 dp->disp.dpy, config, pixmap, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700533 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700534 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
535 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700536 return s;
537 }
538 }
539 return EGL_NO_SURFACE;
540}
541
542EGLSurface eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config,
543 const EGLint *attrib_list)
544{
545 clearError();
546
Jesse Hallb29e5e82012-04-04 16:53:42 -0700547 egl_connection_t* cnx = NULL;
548 egl_display_ptr dp = validate_display_connection(dpy, cnx);
549 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700550 EGLSurface surface = cnx->egl.eglCreatePbufferSurface(
Mathias Agopian7773c432012-02-13 20:06:08 -0800551 dp->disp.dpy, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700552 if (surface != EGL_NO_SURFACE) {
Jesse Hallb29e5e82012-04-04 16:53:42 -0700553 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
554 surface, cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700555 return s;
556 }
557 }
558 return EGL_NO_SURFACE;
559}
Jesse Hall47743382013-02-08 11:13:46 -0800560
Mathias Agopian518ec112011-05-13 16:21:08 -0700561EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
562{
563 clearError();
564
Jesse Hallb29e5e82012-04-04 16:53:42 -0700565 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700566 if (!dp) return EGL_FALSE;
567
Jesse Hallb29e5e82012-04-04 16:53:42 -0700568 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700569 if (!_s.get())
570 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700571
572 egl_surface_t * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -0800573 EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -0700574 if (result == EGL_TRUE) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700575 _s.terminate();
576 }
577 return result;
578}
579
580EGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surface,
581 EGLint attribute, EGLint *value)
582{
583 clearError();
584
Jesse Hallb29e5e82012-04-04 16:53:42 -0700585 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700586 if (!dp) return EGL_FALSE;
587
Jesse Hallb29e5e82012-04-04 16:53:42 -0700588 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700589 if (!_s.get())
590 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700591
Mathias Agopian518ec112011-05-13 16:21:08 -0700592 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian7773c432012-02-13 20:06:08 -0800593 return s->cnx->egl.eglQuerySurface(
594 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700595}
596
Jamie Gennise8696a42012-01-15 18:54:57 -0800597void EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800598 ATRACE_CALL();
Jamie Gennise8696a42012-01-15 18:54:57 -0800599 clearError();
600
Jesse Hallb29e5e82012-04-04 16:53:42 -0700601 const egl_display_ptr dp = validate_display(dpy);
Jamie Gennise8696a42012-01-15 18:54:57 -0800602 if (!dp) {
603 return;
604 }
605
Jesse Hallb29e5e82012-04-04 16:53:42 -0700606 SurfaceRef _s(dp.get(), surface);
Jamie Gennise8696a42012-01-15 18:54:57 -0800607 if (!_s.get()) {
608 setError(EGL_BAD_SURFACE, EGL_FALSE);
609 return;
610 }
Jamie Gennise8696a42012-01-15 18:54:57 -0800611}
612
Mathias Agopian518ec112011-05-13 16:21:08 -0700613// ----------------------------------------------------------------------------
614// Contexts
615// ----------------------------------------------------------------------------
616
617EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config,
618 EGLContext share_list, const EGLint *attrib_list)
619{
620 clearError();
621
Jesse Hallb29e5e82012-04-04 16:53:42 -0700622 egl_connection_t* cnx = NULL;
623 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
Michael Chock0673e1e2012-06-21 12:53:17 -0700624 if (dp) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700625 if (share_list != EGL_NO_CONTEXT) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700626 if (!ContextRef(dp.get(), share_list).get()) {
627 return setError(EGL_BAD_CONTEXT, EGL_NO_CONTEXT);
628 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700629 egl_context_t* const c = get_context(share_list);
630 share_list = c->context;
631 }
632 EGLContext context = cnx->egl.eglCreateContext(
Mathias Agopian7773c432012-02-13 20:06:08 -0800633 dp->disp.dpy, config, share_list, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -0700634 if (context != EGL_NO_CONTEXT) {
635 // figure out if it's a GLESv1 or GLESv2
636 int version = 0;
637 if (attrib_list) {
638 while (*attrib_list != EGL_NONE) {
639 GLint attr = *attrib_list++;
640 GLint value = *attrib_list++;
641 if (attr == EGL_CONTEXT_CLIENT_VERSION) {
642 if (value == 1) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800643 version = egl_connection_t::GLESv1_INDEX;
Jesse Hall47743382013-02-08 11:13:46 -0800644 } else if (value == 2 || value == 3) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800645 version = egl_connection_t::GLESv2_INDEX;
Mathias Agopian518ec112011-05-13 16:21:08 -0700646 }
647 }
648 };
649 }
Jesse Hallb29e5e82012-04-04 16:53:42 -0700650 egl_context_t* c = new egl_context_t(dpy, context, config, cnx,
651 version);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800652#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800653 if (getEGLDebugLevel() > 0)
Siva Velusamy0469dd62011-11-30 15:05:37 -0800654 GLTrace_eglCreateContext(version, c);
655#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700656 return c;
657 }
658 }
659 return EGL_NO_CONTEXT;
660}
661
662EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
663{
664 clearError();
665
Jesse Hallb29e5e82012-04-04 16:53:42 -0700666 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700667 if (!dp)
668 return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -0700669
Jesse Hallb29e5e82012-04-04 16:53:42 -0700670 ContextRef _c(dp.get(), ctx);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700671 if (!_c.get())
672 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
Jesse Hall47743382013-02-08 11:13:46 -0800673
Mathias Agopian518ec112011-05-13 16:21:08 -0700674 egl_context_t * const c = get_context(ctx);
Mathias Agopianada798b2012-02-13 17:09:30 -0800675 EGLBoolean result = c->cnx->egl.eglDestroyContext(dp->disp.dpy, c->context);
Mathias Agopian518ec112011-05-13 16:21:08 -0700676 if (result == EGL_TRUE) {
677 _c.terminate();
678 }
679 return result;
680}
681
Mathias Agopian518ec112011-05-13 16:21:08 -0700682EGLBoolean eglMakeCurrent( EGLDisplay dpy, EGLSurface draw,
683 EGLSurface read, EGLContext ctx)
684{
685 clearError();
686
Jesse Hallb29e5e82012-04-04 16:53:42 -0700687 egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700688 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
689
Mathias Agopian5b287a62011-05-16 18:58:55 -0700690 // If ctx is not EGL_NO_CONTEXT, read is not EGL_NO_SURFACE, or draw is not
691 // EGL_NO_SURFACE, then an EGL_NOT_INITIALIZED error is generated if dpy is
692 // a valid but uninitialized display.
Mathias Agopian518ec112011-05-13 16:21:08 -0700693 if ( (ctx != EGL_NO_CONTEXT) || (read != EGL_NO_SURFACE) ||
694 (draw != EGL_NO_SURFACE) ) {
695 if (!dp->isReady()) return setError(EGL_NOT_INITIALIZED, EGL_FALSE);
696 }
697
698 // get a reference to the object passed in
Jesse Hallb29e5e82012-04-04 16:53:42 -0700699 ContextRef _c(dp.get(), ctx);
700 SurfaceRef _d(dp.get(), draw);
701 SurfaceRef _r(dp.get(), read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700702
703 // validate the context (if not EGL_NO_CONTEXT)
Mathias Agopian5b287a62011-05-16 18:58:55 -0700704 if ((ctx != EGL_NO_CONTEXT) && !_c.get()) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700705 // EGL_NO_CONTEXT is valid
Michael Chock0673e1e2012-06-21 12:53:17 -0700706 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700707 }
708
709 // these are the underlying implementation's object
710 EGLContext impl_ctx = EGL_NO_CONTEXT;
711 EGLSurface impl_draw = EGL_NO_SURFACE;
712 EGLSurface impl_read = EGL_NO_SURFACE;
713
714 // these are our objects structs passed in
715 egl_context_t * c = NULL;
716 egl_surface_t const * d = NULL;
717 egl_surface_t const * r = NULL;
718
719 // these are the current objects structs
720 egl_context_t * cur_c = get_context(getContext());
Jesse Hall47743382013-02-08 11:13:46 -0800721
Mathias Agopian518ec112011-05-13 16:21:08 -0700722 if (ctx != EGL_NO_CONTEXT) {
723 c = get_context(ctx);
724 impl_ctx = c->context;
725 } else {
726 // no context given, use the implementation of the current context
Michael Chock0673e1e2012-06-21 12:53:17 -0700727 if (draw != EGL_NO_SURFACE || read != EGL_NO_SURFACE) {
728 // calling eglMakeCurrent( ..., !=0, !=0, EGL_NO_CONTEXT);
729 return setError(EGL_BAD_MATCH, EGL_FALSE);
730 }
Mathias Agopian518ec112011-05-13 16:21:08 -0700731 if (cur_c == NULL) {
732 // no current context
Mathias Agopian518ec112011-05-13 16:21:08 -0700733 // not an error, there is just no current context.
734 return EGL_TRUE;
735 }
736 }
737
738 // retrieve the underlying implementation's draw EGLSurface
739 if (draw != EGL_NO_SURFACE) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700740 if (!_d.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700741 d = get_surface(draw);
Mathias Agopian518ec112011-05-13 16:21:08 -0700742 impl_draw = d->surface;
743 }
744
745 // retrieve the underlying implementation's read EGLSurface
746 if (read != EGL_NO_SURFACE) {
Michael Chock0673e1e2012-06-21 12:53:17 -0700747 if (!_r.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700748 r = get_surface(read);
Mathias Agopian518ec112011-05-13 16:21:08 -0700749 impl_read = r->surface;
750 }
751
Mathias Agopian518ec112011-05-13 16:21:08 -0700752
Jesse Hallb29e5e82012-04-04 16:53:42 -0700753 EGLBoolean result = dp->makeCurrent(c, cur_c,
Mathias Agopianfb87e542012-01-30 18:20:52 -0800754 draw, read, ctx,
755 impl_draw, impl_read, impl_ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700756
757 if (result == EGL_TRUE) {
Mathias Agopianfb87e542012-01-30 18:20:52 -0800758 if (c) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700759 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
760 egl_tls_t::setContext(ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800761#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -0800762 if (getEGLDebugLevel() > 0)
Siva Velusamy93a826f2011-12-14 12:19:56 -0800763 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800764#endif
Mathias Agopian518ec112011-05-13 16:21:08 -0700765 _c.acquire();
766 _r.acquire();
767 _d.acquire();
Mathias Agopian518ec112011-05-13 16:21:08 -0700768 } else {
769 setGLHooksThreadSpecific(&gHooksNoContext);
770 egl_tls_t::setContext(EGL_NO_CONTEXT);
771 }
Mathias Agopian5fecea72011-08-25 18:38:24 -0700772 } else {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000773 // this will ALOGE the error
Mathias Agopian63108c32013-09-06 13:36:49 -0700774 egl_connection_t* const cnx = &gEGLImpl;
775 result = setError(cnx->egl.eglGetError(), EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -0700776 }
777 return result;
778}
779
780
781EGLBoolean eglQueryContext( EGLDisplay dpy, EGLContext ctx,
782 EGLint attribute, EGLint *value)
783{
784 clearError();
785
Jesse Hallb29e5e82012-04-04 16:53:42 -0700786 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -0700787 if (!dp) return EGL_FALSE;
788
Jesse Hallb29e5e82012-04-04 16:53:42 -0700789 ContextRef _c(dp.get(), ctx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700790 if (!_c.get()) return setError(EGL_BAD_CONTEXT, EGL_FALSE);
791
Mathias Agopian518ec112011-05-13 16:21:08 -0700792 egl_context_t * const c = get_context(ctx);
Mathias Agopian7773c432012-02-13 20:06:08 -0800793 return c->cnx->egl.eglQueryContext(
794 dp->disp.dpy, c->context, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -0700795
Mathias Agopian518ec112011-05-13 16:21:08 -0700796}
797
798EGLContext eglGetCurrentContext(void)
799{
800 // could be called before eglInitialize(), but we wouldn't have a context
801 // then, and this function would correctly return EGL_NO_CONTEXT.
802
803 clearError();
804
805 EGLContext ctx = getContext();
806 return ctx;
807}
808
809EGLSurface eglGetCurrentSurface(EGLint readdraw)
810{
811 // could be called before eglInitialize(), but we wouldn't have a context
812 // then, and this function would correctly return EGL_NO_SURFACE.
813
814 clearError();
815
816 EGLContext ctx = getContext();
817 if (ctx) {
818 egl_context_t const * const c = get_context(ctx);
819 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
820 switch (readdraw) {
821 case EGL_READ: return c->read;
Jesse Hall47743382013-02-08 11:13:46 -0800822 case EGL_DRAW: return c->draw;
Mathias Agopian518ec112011-05-13 16:21:08 -0700823 default: return setError(EGL_BAD_PARAMETER, EGL_NO_SURFACE);
824 }
825 }
826 return EGL_NO_SURFACE;
827}
828
829EGLDisplay eglGetCurrentDisplay(void)
830{
831 // could be called before eglInitialize(), but we wouldn't have a context
832 // then, and this function would correctly return EGL_NO_DISPLAY.
833
834 clearError();
835
836 EGLContext ctx = getContext();
837 if (ctx) {
838 egl_context_t const * const c = get_context(ctx);
839 if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
840 return c->dpy;
841 }
842 return EGL_NO_DISPLAY;
843}
844
845EGLBoolean eglWaitGL(void)
846{
Mathias Agopian518ec112011-05-13 16:21:08 -0700847 clearError();
848
Mathias Agopianada798b2012-02-13 17:09:30 -0800849 egl_connection_t* const cnx = &gEGLImpl;
850 if (!cnx->dso)
851 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
852
853 return cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -0700854}
855
856EGLBoolean eglWaitNative(EGLint engine)
857{
Mathias Agopian518ec112011-05-13 16:21:08 -0700858 clearError();
859
Mathias Agopianada798b2012-02-13 17:09:30 -0800860 egl_connection_t* const cnx = &gEGLImpl;
861 if (!cnx->dso)
862 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
863
864 return cnx->egl.eglWaitNative(engine);
Mathias Agopian518ec112011-05-13 16:21:08 -0700865}
866
867EGLint eglGetError(void)
868{
Mathias Agopianada798b2012-02-13 17:09:30 -0800869 EGLint err = EGL_SUCCESS;
870 egl_connection_t* const cnx = &gEGLImpl;
871 if (cnx->dso) {
872 err = cnx->egl.eglGetError();
Mathias Agopian518ec112011-05-13 16:21:08 -0700873 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800874 if (err == EGL_SUCCESS) {
875 err = egl_tls_t::getError();
876 }
877 return err;
Mathias Agopian518ec112011-05-13 16:21:08 -0700878}
879
Michael Chockc0ec5e22014-01-27 08:14:33 -0800880static __eglMustCastToProperFunctionPointerType findBuiltinWrapper(
Jesse Hallc07b5202013-07-04 12:08:16 -0700881 const char* procname) {
882 const egl_connection_t* cnx = &gEGLImpl;
883 void* proc = NULL;
884
Michael Chockc0ec5e22014-01-27 08:14:33 -0800885 proc = dlsym(cnx->libEgl, procname);
886 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
887
Jesse Hallc07b5202013-07-04 12:08:16 -0700888 proc = dlsym(cnx->libGles2, procname);
889 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
890
891 proc = dlsym(cnx->libGles1, procname);
892 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
893
894 return NULL;
895}
896
Mathias Agopian518ec112011-05-13 16:21:08 -0700897__eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname)
898{
899 // eglGetProcAddress() could be the very first function called
900 // in which case we must make sure we've initialized ourselves, this
901 // happens the first time egl_get_display() is called.
902
903 clearError();
904
905 if (egl_init_drivers() == EGL_FALSE) {
906 setError(EGL_BAD_PARAMETER, NULL);
907 return NULL;
908 }
909
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700910 if (FILTER_EXTENSIONS(procname)) {
Jamie Gennisaca51c02011-11-03 17:42:43 -0700911 return NULL;
912 }
913
Mathias Agopian518ec112011-05-13 16:21:08 -0700914 __eglMustCastToProperFunctionPointerType addr;
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -0700915 addr = findProcAddress(procname, sExtensionMap, NELEM(sExtensionMap));
Mathias Agopian518ec112011-05-13 16:21:08 -0700916 if (addr) return addr;
917
Michael Chockc0ec5e22014-01-27 08:14:33 -0800918 addr = findBuiltinWrapper(procname);
Jesse Hallc07b5202013-07-04 12:08:16 -0700919 if (addr) return addr;
Jamie Gennisaca51c02011-11-03 17:42:43 -0700920
Mathias Agopian518ec112011-05-13 16:21:08 -0700921 // this protects accesses to sGLExtentionMap and sGLExtentionSlot
922 pthread_mutex_lock(&sExtensionMapMutex);
923
924 /*
925 * Since eglGetProcAddress() is not associated to anything, it needs
926 * to return a function pointer that "works" regardless of what
927 * the current context is.
928 *
929 * For this reason, we return a "forwarder", a small stub that takes
930 * care of calling the function associated with the context
931 * currently bound.
932 *
933 * We first look for extensions we've already resolved, if we're seeing
934 * this extension for the first time, we go through all our
935 * implementations and call eglGetProcAddress() and record the
936 * result in the appropriate implementation hooks and return the
937 * address of the forwarder corresponding to that hook set.
938 *
939 */
940
941 const String8 name(procname);
942 addr = sGLExtentionMap.valueFor(name);
943 const int slot = sGLExtentionSlot;
944
Steve Blocke6f43dd2012-01-06 19:20:56 +0000945 ALOGE_IF(slot >= MAX_NUMBER_OF_GL_EXTENSIONS,
Mathias Agopian518ec112011-05-13 16:21:08 -0700946 "no more slots for eglGetProcAddress(\"%s\")",
947 procname);
948
Siva Velusamy0469dd62011-11-30 15:05:37 -0800949#if EGL_TRACE
950 gl_hooks_t *debugHooks = GLTrace_getGLHooks();
951#endif
952
Mathias Agopian518ec112011-05-13 16:21:08 -0700953 if (!addr && (slot < MAX_NUMBER_OF_GL_EXTENSIONS)) {
954 bool found = false;
Mathias Agopianada798b2012-02-13 17:09:30 -0800955
956 egl_connection_t* const cnx = &gEGLImpl;
957 if (cnx->dso && cnx->egl.eglGetProcAddress) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800958 // Extensions are independent of the bound context
luliuhui69d10072012-08-30 11:15:36 +0800959 addr =
Mathias Agopian7773c432012-02-13 20:06:08 -0800960 cnx->hooks[egl_connection_t::GLESv1_INDEX]->ext.extensions[slot] =
961 cnx->hooks[egl_connection_t::GLESv2_INDEX]->ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700962#if EGL_TRACE
Mathias Agopianada798b2012-02-13 17:09:30 -0800963 debugHooks->ext.extensions[slot] =
964 gHooksTrace.ext.extensions[slot] =
Mathias Agopian518ec112011-05-13 16:21:08 -0700965#endif
Mathias Agopianada798b2012-02-13 17:09:30 -0800966 cnx->egl.eglGetProcAddress(procname);
luliuhui69d10072012-08-30 11:15:36 +0800967 if (addr) found = true;
Mathias Agopian518ec112011-05-13 16:21:08 -0700968 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800969
Mathias Agopian518ec112011-05-13 16:21:08 -0700970 if (found) {
971 addr = gExtensionForwarders[slot];
Mathias Agopian518ec112011-05-13 16:21:08 -0700972 sGLExtentionMap.add(name, addr);
973 sGLExtentionSlot++;
974 }
975 }
976
977 pthread_mutex_unlock(&sExtensionMapMutex);
978 return addr;
979}
980
Jamie Gennis28ef8d72012-04-05 20:34:54 -0700981class FrameCompletionThread : public Thread {
982public:
983
984 static void queueSync(EGLSyncKHR sync) {
985 static sp<FrameCompletionThread> thread(new FrameCompletionThread);
986 static bool running = false;
987 if (!running) {
988 thread->run("GPUFrameCompletion");
989 running = true;
990 }
991 {
992 Mutex::Autolock lock(thread->mMutex);
993 ScopedTrace st(ATRACE_TAG, String8::format("kicked off frame %d",
994 thread->mFramesQueued).string());
995 thread->mQueue.push_back(sync);
996 thread->mCondition.signal();
997 thread->mFramesQueued++;
998 ATRACE_INT("GPU Frames Outstanding", thread->mQueue.size());
999 }
1000 }
1001
1002private:
1003 FrameCompletionThread() : mFramesQueued(0), mFramesCompleted(0) {}
1004
1005 virtual bool threadLoop() {
1006 EGLSyncKHR sync;
1007 uint32_t frameNum;
1008 {
1009 Mutex::Autolock lock(mMutex);
1010 while (mQueue.isEmpty()) {
1011 mCondition.wait(mMutex);
1012 }
1013 sync = mQueue[0];
1014 frameNum = mFramesCompleted;
1015 }
1016 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
1017 {
1018 ScopedTrace st(ATRACE_TAG, String8::format("waiting for frame %d",
1019 frameNum).string());
1020 EGLint result = eglClientWaitSyncKHR(dpy, sync, 0, EGL_FOREVER_KHR);
1021 if (result == EGL_FALSE) {
1022 ALOGE("FrameCompletion: error waiting for fence: %#x", eglGetError());
1023 } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
1024 ALOGE("FrameCompletion: timeout waiting for fence");
1025 }
1026 eglDestroySyncKHR(dpy, sync);
1027 }
1028 {
1029 Mutex::Autolock lock(mMutex);
1030 mQueue.removeAt(0);
1031 mFramesCompleted++;
1032 ATRACE_INT("GPU Frames Outstanding", mQueue.size());
1033 }
1034 return true;
1035 }
1036
1037 uint32_t mFramesQueued;
1038 uint32_t mFramesCompleted;
1039 Vector<EGLSyncKHR> mQueue;
1040 Condition mCondition;
1041 Mutex mMutex;
1042};
1043
Mathias Agopian518ec112011-05-13 16:21:08 -07001044EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface draw)
1045{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001046 ATRACE_CALL();
Mathias Agopian518ec112011-05-13 16:21:08 -07001047 clearError();
1048
Jesse Hallb29e5e82012-04-04 16:53:42 -07001049 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001050 if (!dp) return EGL_FALSE;
1051
Jesse Hallb29e5e82012-04-04 16:53:42 -07001052 SurfaceRef _s(dp.get(), draw);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001053 if (!_s.get())
1054 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001055
Siva Velusamy0469dd62011-11-30 15:05:37 -08001056#if EGL_TRACE
Siva Velusamya73a9772012-12-18 14:56:55 -08001057 gl_hooks_t const *trace_hooks = getGLTraceThreadSpecific();
1058 if (getEGLDebugLevel() > 0) {
1059 if (trace_hooks == NULL) {
1060 if (GLTrace_start() < 0) {
1061 ALOGE("Disabling Tracer for OpenGL ES");
1062 setEGLDebugLevel(0);
1063 } else {
1064 // switch over to the trace version of hooks
1065 EGLContext ctx = egl_tls_t::getContext();
1066 egl_context_t * const c = get_context(ctx);
1067 if (c) {
1068 setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1069 GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
1070 }
1071 }
1072 }
1073
Siva Velusamy0469dd62011-11-30 15:05:37 -08001074 GLTrace_eglSwapBuffers(dpy, draw);
Siva Velusamya73a9772012-12-18 14:56:55 -08001075 } else if (trace_hooks != NULL) {
1076 // tracing is now disabled, so switch back to the non trace version
1077 EGLContext ctx = egl_tls_t::getContext();
1078 egl_context_t * const c = get_context(ctx);
1079 if (c) setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1080 GLTrace_stop();
1081 }
Siva Velusamy0469dd62011-11-30 15:05:37 -08001082#endif
1083
Mathias Agopian518ec112011-05-13 16:21:08 -07001084 egl_surface_t const * const s = get_surface(draw);
Mathias Agopian7db993a2012-03-25 00:49:46 -07001085
Mathias Agopianed6d08b2013-04-16 16:39:46 -07001086 if (CC_UNLIKELY(dp->traceGpuCompletion)) {
1087 EGLSyncKHR sync = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL);
1088 if (sync != EGL_NO_SYNC_KHR) {
1089 FrameCompletionThread::queueSync(sync);
1090 }
1091 }
1092
Mathias Agopian7db993a2012-03-25 00:49:46 -07001093 if (CC_UNLIKELY(dp->finishOnSwap)) {
1094 uint32_t pixel;
1095 egl_context_t * const c = get_context( egl_tls_t::getContext() );
1096 if (c) {
1097 // glReadPixels() ensures that the frame is complete
1098 s->cnx->hooks[c->version]->gl.glReadPixels(0,0,1,1,
1099 GL_RGBA,GL_UNSIGNED_BYTE,&pixel);
1100 }
1101 }
1102
Mathias Agopianed6d08b2013-04-16 16:39:46 -07001103 return s->cnx->egl.eglSwapBuffers(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001104}
1105
1106EGLBoolean eglCopyBuffers( EGLDisplay dpy, EGLSurface surface,
1107 NativePixmapType target)
1108{
1109 clearError();
1110
Jesse Hallb29e5e82012-04-04 16:53:42 -07001111 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001112 if (!dp) return EGL_FALSE;
1113
Jesse Hallb29e5e82012-04-04 16:53:42 -07001114 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001115 if (!_s.get())
1116 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001117
Mathias Agopian518ec112011-05-13 16:21:08 -07001118 egl_surface_t const * const s = get_surface(surface);
Mathias Agopianada798b2012-02-13 17:09:30 -08001119 return s->cnx->egl.eglCopyBuffers(dp->disp.dpy, s->surface, target);
Mathias Agopian518ec112011-05-13 16:21:08 -07001120}
1121
1122const char* eglQueryString(EGLDisplay dpy, EGLint name)
1123{
1124 clearError();
1125
Jesse Hallb29e5e82012-04-04 16:53:42 -07001126 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001127 if (!dp) return (const char *) NULL;
1128
1129 switch (name) {
1130 case EGL_VENDOR:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001131 return dp->getVendorString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001132 case EGL_VERSION:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001133 return dp->getVersionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001134 case EGL_EXTENSIONS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001135 return dp->getExtensionString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001136 case EGL_CLIENT_APIS:
Mathias Agopian4b9511c2011-11-13 23:52:47 -08001137 return dp->getClientApiString();
Mathias Agopian518ec112011-05-13 16:21:08 -07001138 }
1139 return setError(EGL_BAD_PARAMETER, (const char *)0);
1140}
1141
Mathias Agopianca088332013-03-28 17:44:13 -07001142EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name)
1143{
1144 clearError();
1145
1146 const egl_display_ptr dp = validate_display(dpy);
1147 if (!dp) return (const char *) NULL;
1148
1149 switch (name) {
1150 case EGL_VENDOR:
1151 return dp->disp.queryString.vendor;
1152 case EGL_VERSION:
1153 return dp->disp.queryString.version;
1154 case EGL_EXTENSIONS:
1155 return dp->disp.queryString.extensions;
1156 case EGL_CLIENT_APIS:
1157 return dp->disp.queryString.clientApi;
1158 }
1159 return setError(EGL_BAD_PARAMETER, (const char *)0);
1160}
Mathias Agopian518ec112011-05-13 16:21:08 -07001161
1162// ----------------------------------------------------------------------------
1163// EGL 1.1
1164// ----------------------------------------------------------------------------
1165
1166EGLBoolean eglSurfaceAttrib(
1167 EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
1168{
1169 clearError();
1170
Jesse Hallb29e5e82012-04-04 16:53:42 -07001171 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001172 if (!dp) return EGL_FALSE;
1173
Jesse Hallb29e5e82012-04-04 16:53:42 -07001174 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001175 if (!_s.get())
1176 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001177
Mathias Agopian518ec112011-05-13 16:21:08 -07001178 egl_surface_t const * const s = get_surface(surface);
1179 if (s->cnx->egl.eglSurfaceAttrib) {
1180 return s->cnx->egl.eglSurfaceAttrib(
Mathias Agopianada798b2012-02-13 17:09:30 -08001181 dp->disp.dpy, s->surface, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001182 }
1183 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1184}
1185
1186EGLBoolean eglBindTexImage(
1187 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1188{
1189 clearError();
1190
Jesse Hallb29e5e82012-04-04 16:53:42 -07001191 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001192 if (!dp) return EGL_FALSE;
1193
Jesse Hallb29e5e82012-04-04 16:53:42 -07001194 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001195 if (!_s.get())
1196 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001197
Mathias Agopian518ec112011-05-13 16:21:08 -07001198 egl_surface_t const * const s = get_surface(surface);
1199 if (s->cnx->egl.eglBindTexImage) {
1200 return s->cnx->egl.eglBindTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001201 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001202 }
1203 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1204}
1205
1206EGLBoolean eglReleaseTexImage(
1207 EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1208{
1209 clearError();
1210
Jesse Hallb29e5e82012-04-04 16:53:42 -07001211 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001212 if (!dp) return EGL_FALSE;
1213
Jesse Hallb29e5e82012-04-04 16:53:42 -07001214 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001215 if (!_s.get())
1216 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001217
Mathias Agopian518ec112011-05-13 16:21:08 -07001218 egl_surface_t const * const s = get_surface(surface);
1219 if (s->cnx->egl.eglReleaseTexImage) {
1220 return s->cnx->egl.eglReleaseTexImage(
Mathias Agopianada798b2012-02-13 17:09:30 -08001221 dp->disp.dpy, s->surface, buffer);
Mathias Agopian518ec112011-05-13 16:21:08 -07001222 }
1223 return setError(EGL_BAD_SURFACE, EGL_FALSE);
1224}
1225
1226EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
1227{
1228 clearError();
1229
Jesse Hallb29e5e82012-04-04 16:53:42 -07001230 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001231 if (!dp) return EGL_FALSE;
1232
1233 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001234 egl_connection_t* const cnx = &gEGLImpl;
1235 if (cnx->dso && cnx->egl.eglSwapInterval) {
1236 res = cnx->egl.eglSwapInterval(dp->disp.dpy, interval);
Mathias Agopian518ec112011-05-13 16:21:08 -07001237 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001238
Mathias Agopian518ec112011-05-13 16:21:08 -07001239 return res;
1240}
1241
1242
1243// ----------------------------------------------------------------------------
1244// EGL 1.2
1245// ----------------------------------------------------------------------------
1246
1247EGLBoolean eglWaitClient(void)
1248{
1249 clearError();
1250
Mathias Agopianada798b2012-02-13 17:09:30 -08001251 egl_connection_t* const cnx = &gEGLImpl;
1252 if (!cnx->dso)
1253 return setError(EGL_BAD_CONTEXT, EGL_FALSE);
1254
1255 EGLBoolean res;
1256 if (cnx->egl.eglWaitClient) {
1257 res = cnx->egl.eglWaitClient();
1258 } else {
1259 res = cnx->egl.eglWaitGL();
Mathias Agopian518ec112011-05-13 16:21:08 -07001260 }
1261 return res;
1262}
1263
1264EGLBoolean eglBindAPI(EGLenum api)
1265{
1266 clearError();
1267
1268 if (egl_init_drivers() == EGL_FALSE) {
1269 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1270 }
1271
1272 // bind this API on all EGLs
1273 EGLBoolean res = EGL_TRUE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001274 egl_connection_t* const cnx = &gEGLImpl;
1275 if (cnx->dso && cnx->egl.eglBindAPI) {
1276 res = cnx->egl.eglBindAPI(api);
Mathias Agopian518ec112011-05-13 16:21:08 -07001277 }
1278 return res;
1279}
1280
1281EGLenum eglQueryAPI(void)
1282{
1283 clearError();
1284
1285 if (egl_init_drivers() == EGL_FALSE) {
1286 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1287 }
1288
Mathias Agopianada798b2012-02-13 17:09:30 -08001289 egl_connection_t* const cnx = &gEGLImpl;
1290 if (cnx->dso && cnx->egl.eglQueryAPI) {
1291 return cnx->egl.eglQueryAPI();
Mathias Agopian518ec112011-05-13 16:21:08 -07001292 }
Mathias Agopianada798b2012-02-13 17:09:30 -08001293
Mathias Agopian518ec112011-05-13 16:21:08 -07001294 // or, it can only be OpenGL ES
1295 return EGL_OPENGL_ES_API;
1296}
1297
1298EGLBoolean eglReleaseThread(void)
1299{
1300 clearError();
1301
Mathias Agopian4e620dd2013-05-30 16:07:36 -07001302#if EGL_TRACE
1303 if (getEGLDebugLevel() > 0)
1304 GLTrace_eglReleaseThread();
1305#endif
1306
Mathias Agopianada798b2012-02-13 17:09:30 -08001307 egl_connection_t* const cnx = &gEGLImpl;
1308 if (cnx->dso && cnx->egl.eglReleaseThread) {
1309 cnx->egl.eglReleaseThread();
Mathias Agopian518ec112011-05-13 16:21:08 -07001310 }
Sai Kiran Korwar3ac517a2014-01-31 21:15:07 +05301311
1312 // If there is context bound to the thread, release it
1313 egl_display_t::loseCurrent(get_context(getContext()));
1314
Mathias Agopian518ec112011-05-13 16:21:08 -07001315 egl_tls_t::clearTLS();
Mathias Agopian518ec112011-05-13 16:21:08 -07001316 return EGL_TRUE;
1317}
1318
1319EGLSurface eglCreatePbufferFromClientBuffer(
1320 EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer,
1321 EGLConfig config, const EGLint *attrib_list)
1322{
1323 clearError();
1324
Jesse Hallb29e5e82012-04-04 16:53:42 -07001325 egl_connection_t* cnx = NULL;
1326 const egl_display_ptr dp = validate_display_connection(dpy, cnx);
1327 if (!dp) return EGL_FALSE;
Mathias Agopian518ec112011-05-13 16:21:08 -07001328 if (cnx->egl.eglCreatePbufferFromClientBuffer) {
1329 return cnx->egl.eglCreatePbufferFromClientBuffer(
Mathias Agopian7773c432012-02-13 20:06:08 -08001330 dp->disp.dpy, buftype, buffer, config, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001331 }
1332 return setError(EGL_BAD_CONFIG, EGL_NO_SURFACE);
1333}
1334
1335// ----------------------------------------------------------------------------
1336// EGL_EGLEXT_VERSION 3
1337// ----------------------------------------------------------------------------
1338
1339EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface,
1340 const EGLint *attrib_list)
1341{
1342 clearError();
1343
Jesse Hallb29e5e82012-04-04 16:53:42 -07001344 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001345 if (!dp) return EGL_FALSE;
1346
Jesse Hallb29e5e82012-04-04 16:53:42 -07001347 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001348 if (!_s.get())
1349 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001350
1351 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001352 if (s->cnx->egl.eglLockSurfaceKHR) {
1353 return s->cnx->egl.eglLockSurfaceKHR(
Mathias Agopianada798b2012-02-13 17:09:30 -08001354 dp->disp.dpy, s->surface, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001355 }
1356 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1357}
1358
1359EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface)
1360{
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
Jesse Hallb29e5e82012-04-04 16:53:42 -07001366 SurfaceRef _s(dp.get(), surface);
Mathias Agopian5b287a62011-05-16 18:58:55 -07001367 if (!_s.get())
1368 return setError(EGL_BAD_SURFACE, EGL_FALSE);
Mathias Agopian518ec112011-05-13 16:21:08 -07001369
1370 egl_surface_t const * const s = get_surface(surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001371 if (s->cnx->egl.eglUnlockSurfaceKHR) {
Mathias Agopianada798b2012-02-13 17:09:30 -08001372 return s->cnx->egl.eglUnlockSurfaceKHR(dp->disp.dpy, s->surface);
Mathias Agopian518ec112011-05-13 16:21:08 -07001373 }
1374 return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1375}
1376
1377EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1378 EGLClientBuffer buffer, const EGLint *attrib_list)
1379{
1380 clearError();
1381
Jesse Hallb29e5e82012-04-04 16:53:42 -07001382 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001383 if (!dp) return EGL_NO_IMAGE_KHR;
1384
Jesse Hallb29e5e82012-04-04 16:53:42 -07001385 ContextRef _c(dp.get(), ctx);
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001386 egl_context_t * const c = _c.get();
Mathias Agopian518ec112011-05-13 16:21:08 -07001387
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001388 EGLImageKHR result = EGL_NO_IMAGE_KHR;
1389 egl_connection_t* const cnx = &gEGLImpl;
1390 if (cnx->dso && cnx->egl.eglCreateImageKHR) {
1391 result = cnx->egl.eglCreateImageKHR(
1392 dp->disp.dpy,
1393 c ? c->context : EGL_NO_CONTEXT,
1394 target, buffer, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001395 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001396 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001397}
1398
1399EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img)
1400{
1401 clearError();
1402
Jesse Hallb29e5e82012-04-04 16:53:42 -07001403 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001404 if (!dp) return EGL_FALSE;
1405
Steven Holte646a5c52012-06-04 20:02:11 -07001406 EGLBoolean result = EGL_FALSE;
Mathias Agopianada798b2012-02-13 17:09:30 -08001407 egl_connection_t* const cnx = &gEGLImpl;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001408 if (cnx->dso && cnx->egl.eglDestroyImageKHR) {
Steven Holte646a5c52012-06-04 20:02:11 -07001409 result = cnx->egl.eglDestroyImageKHR(dp->disp.dpy, img);
Mathias Agopian518ec112011-05-13 16:21:08 -07001410 }
Steven Holte646a5c52012-06-04 20:02:11 -07001411 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001412}
1413
1414// ----------------------------------------------------------------------------
1415// EGL_EGLEXT_VERSION 5
1416// ----------------------------------------------------------------------------
1417
1418
1419EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list)
1420{
1421 clearError();
1422
Jesse Hallb29e5e82012-04-04 16:53:42 -07001423 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001424 if (!dp) return EGL_NO_SYNC_KHR;
1425
Mathias Agopian518ec112011-05-13 16:21:08 -07001426 EGLSyncKHR result = EGL_NO_SYNC_KHR;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001427 egl_connection_t* const cnx = &gEGLImpl;
1428 if (cnx->dso && cnx->egl.eglCreateSyncKHR) {
1429 result = cnx->egl.eglCreateSyncKHR(dp->disp.dpy, type, attrib_list);
Mathias Agopian518ec112011-05-13 16:21:08 -07001430 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001431 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001432}
1433
1434EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync)
1435{
1436 clearError();
1437
Jesse Hallb29e5e82012-04-04 16:53:42 -07001438 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001439 if (!dp) return EGL_FALSE;
1440
Mathias Agopian518ec112011-05-13 16:21:08 -07001441 EGLBoolean result = EGL_FALSE;
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001442 egl_connection_t* const cnx = &gEGLImpl;
1443 if (cnx->dso && cnx->egl.eglDestroySyncKHR) {
1444 result = cnx->egl.eglDestroySyncKHR(dp->disp.dpy, sync);
Mathias Agopian518ec112011-05-13 16:21:08 -07001445 }
1446 return result;
1447}
1448
Mathias Agopiane9b3dfb2013-03-27 14:30:19 -07001449EGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) {
1450 clearError();
1451
1452 const egl_display_ptr dp = validate_display(dpy);
1453 if (!dp) return EGL_FALSE;
1454
1455 EGLBoolean result = EGL_FALSE;
1456 egl_connection_t* const cnx = &gEGLImpl;
1457 if (cnx->dso && cnx->egl.eglSignalSyncKHR) {
1458 result = cnx->egl.eglSignalSyncKHR(
1459 dp->disp.dpy, sync, mode);
1460 }
1461 return result;
1462}
1463
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001464EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync,
1465 EGLint flags, EGLTimeKHR timeout)
Mathias Agopian518ec112011-05-13 16:21:08 -07001466{
1467 clearError();
1468
Jesse Hallb29e5e82012-04-04 16:53:42 -07001469 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001470 if (!dp) return EGL_FALSE;
1471
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001472 EGLBoolean result = EGL_FALSE;
1473 egl_connection_t* const cnx = &gEGLImpl;
1474 if (cnx->dso && cnx->egl.eglClientWaitSyncKHR) {
1475 result = cnx->egl.eglClientWaitSyncKHR(
1476 dp->disp.dpy, sync, flags, timeout);
Mathias Agopian518ec112011-05-13 16:21:08 -07001477 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001478 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001479}
1480
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001481EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync,
1482 EGLint attribute, EGLint *value)
Mathias Agopian518ec112011-05-13 16:21:08 -07001483{
1484 clearError();
1485
Jesse Hallb29e5e82012-04-04 16:53:42 -07001486 const egl_display_ptr dp = validate_display(dpy);
Mathias Agopian518ec112011-05-13 16:21:08 -07001487 if (!dp) return EGL_FALSE;
1488
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001489 EGLBoolean result = EGL_FALSE;
1490 egl_connection_t* const cnx = &gEGLImpl;
1491 if (cnx->dso && cnx->egl.eglGetSyncAttribKHR) {
1492 result = cnx->egl.eglGetSyncAttribKHR(
1493 dp->disp.dpy, sync, attribute, value);
Mathias Agopian518ec112011-05-13 16:21:08 -07001494 }
Mathias Agopian7c0441a2012-02-14 17:14:36 -08001495 return result;
Mathias Agopian518ec112011-05-13 16:21:08 -07001496}
1497
1498// ----------------------------------------------------------------------------
Mathias Agopian2bb71682013-03-27 17:32:41 -07001499// EGL_EGLEXT_VERSION 15
1500// ----------------------------------------------------------------------------
1501
1502EGLint eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) {
1503 clearError();
1504 const egl_display_ptr dp = validate_display(dpy);
1505 if (!dp) return EGL_FALSE;
1506 EGLint result = EGL_FALSE;
1507 egl_connection_t* const cnx = &gEGLImpl;
1508 if (cnx->dso && cnx->egl.eglWaitSyncKHR) {
1509 result = cnx->egl.eglWaitSyncKHR(dp->disp.dpy, sync, flags);
1510 }
1511 return result;
1512}
1513
1514// ----------------------------------------------------------------------------
Mathias Agopian518ec112011-05-13 16:21:08 -07001515// ANDROID extensions
1516// ----------------------------------------------------------------------------
1517
Jamie Gennis331841b2012-09-06 14:52:00 -07001518EGLint eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync)
1519{
1520 clearError();
1521
1522 const egl_display_ptr dp = validate_display(dpy);
1523 if (!dp) return EGL_NO_NATIVE_FENCE_FD_ANDROID;
1524
1525 EGLint result = EGL_NO_NATIVE_FENCE_FD_ANDROID;
1526 egl_connection_t* const cnx = &gEGLImpl;
1527 if (cnx->dso && cnx->egl.eglDupNativeFenceFDANDROID) {
1528 result = cnx->egl.eglDupNativeFenceFDANDROID(dp->disp.dpy, sync);
1529 }
1530 return result;
1531}
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001532
Andy McFadden72841452013-03-01 16:25:32 -08001533EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface,
1534 EGLnsecsANDROID time)
1535{
1536 clearError();
1537
1538 const egl_display_ptr dp = validate_display(dpy);
1539 if (!dp) {
1540 return EGL_FALSE;
1541 }
1542
1543 SurfaceRef _s(dp.get(), surface);
1544 if (!_s.get()) {
1545 setError(EGL_BAD_SURFACE, EGL_FALSE);
1546 return EGL_FALSE;
1547 }
1548
1549 egl_surface_t const * const s = get_surface(surface);
1550 native_window_set_buffers_timestamp(s->win.get(), time);
1551
1552 return EGL_TRUE;
1553}
1554
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001555// ----------------------------------------------------------------------------
1556// NVIDIA extensions
1557// ----------------------------------------------------------------------------
1558EGLuint64NV eglGetSystemTimeFrequencyNV()
1559{
1560 clearError();
1561
1562 if (egl_init_drivers() == EGL_FALSE) {
1563 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1564 }
1565
1566 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001567 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001568
Mathias Agopianada798b2012-02-13 17:09:30 -08001569 if (cnx->dso && cnx->egl.eglGetSystemTimeFrequencyNV) {
1570 return cnx->egl.eglGetSystemTimeFrequencyNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001571 }
1572
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001573 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001574}
1575
1576EGLuint64NV eglGetSystemTimeNV()
1577{
1578 clearError();
1579
1580 if (egl_init_drivers() == EGL_FALSE) {
1581 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1582 }
1583
1584 EGLuint64NV ret = 0;
Mathias Agopianada798b2012-02-13 17:09:30 -08001585 egl_connection_t* const cnx = &gEGLImpl;
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001586
Mathias Agopianada798b2012-02-13 17:09:30 -08001587 if (cnx->dso && cnx->egl.eglGetSystemTimeNV) {
1588 return cnx->egl.eglGetSystemTimeNV();
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001589 }
1590
Mathias Agopian0e8bbee2011-10-05 19:15:05 -07001591 return setErrorQuiet(EGL_BAD_DISPLAY, 0);
Jonas Yang1c3d72a2011-08-26 20:04:39 +08001592}