eglApi.cpp revision 63108c34ec181e923b68ee840bb7960f205466a7
14774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall/*
2518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian ** Copyright 2007, The Android Open Source Project
3518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian **
44774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall ** Licensed under the Apache License, Version 2.0 (the "License");
54774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall ** you may not use this file except in compliance with the License.
64774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall ** You may obtain a copy of the License at
7518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian **
84774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall **     http://www.apache.org/licenses/LICENSE-2.0
9518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian **
104774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall ** Unless required by applicable law or agreed to in writing, software
114774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall ** distributed under the License is distributed on an "AS IS" BASIS,
124774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
134774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall ** See the License for the specific language governing permissions and
14518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian ** limitations under the License.
15518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian */
16518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
171c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis#define ATRACE_TAG ATRACE_TAG_GRAPHICS
181c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis
19c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall#include <dlfcn.h>
20518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <ctype.h>
21518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <stdlib.h>
22518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <string.h>
23518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
24518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <hardware/gralloc.h>
25518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <system/window.h>
26518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
27518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <EGL/egl.h>
28518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <EGL/eglext.h>
29518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
30518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <cutils/log.h>
31518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <cutils/atomic.h>
327db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian#include <cutils/compiler.h>
33518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <cutils/properties.h>
34518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <cutils/memory.h>
35518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
36518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <utils/KeyedVector.h>
37518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <utils/SortedVector.h>
38518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include <utils/String8.h>
391c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis#include <utils/Trace.h>
40518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
4139c24a20bbc697630d2b92c251b70c04d6f9d00cMathias Agopian#include "../egl_impl.h"
4239c24a20bbc697630d2b92c251b70c04d6f9d00cMathias Agopian#include "../glestrace.h"
4339c24a20bbc697630d2b92c251b70c04d6f9d00cMathias Agopian#include "../hooks.h"
44518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
45518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include "egl_display.h"
46518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include "egl_object.h"
47518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#include "egl_tls.h"
48ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian#include "egldefs.h"
49518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
50518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianusing namespace android;
51518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
52518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
53518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
54e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopiannamespace android {
55e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
56518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianstruct extention_map_t {
57518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    const char* name;
58518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    __eglMustCastToProperFunctionPointerType address;
59518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian};
60518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
61e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian/*
6221558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * This is the list of EGL extensions exposed to applications.
63e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian *
6421558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * Some of them (gBuiltinExtensionString) are implemented entirely in this EGL
6521558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * wrapper and are always available.
66e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian *
6721558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * The rest (gExtensionString) depend on support in the EGL driver, and are
6821558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * only available if the driver supports them. However, some of these must be
6921558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * supported because they are used by the Android system itself; these are
7021558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * listd as mandatory below and are required by the CDD. The system *assumes*
7121558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * the mandatory extensions are present and may not function properly if some
7221558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * are missing.
7321558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall *
7421558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall * NOTE: Both strings MUST have a single space as the last character.
75e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian */
7621558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hallextern char const * const gBuiltinExtensionString =
7721558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall        "EGL_KHR_get_all_proc_addresses "
7821558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall        "EGL_ANDROID_presentation_time "
7921558daf691dbcdff4a41e659fd013273db4d0b7Jesse Hall        ;
80e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopianextern char const * const gExtensionString  =
81e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_KHR_image "                        // mandatory
82e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_KHR_image_base "                   // mandatory
83e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_KHR_image_pixmap "
84e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_KHR_lock_surface "
85c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        "EGL_KHR_gl_colorspace "
86e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_KHR_gl_texture_2D_image "
87e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_KHR_gl_texture_cubemap_image "
88e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_KHR_gl_renderbuffer_image "
89e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_KHR_reusable_sync "
90e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_KHR_fence_sync "
91f6d1c3930eeba6b089ba12fb82ecad1c6622e550Jamie Gennis        "EGL_KHR_create_context "
92e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_EXT_create_context_robustness "
93e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_NV_system_time "
94e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        "EGL_ANDROID_image_native_buffer "      // mandatory
952bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian        "EGL_KHR_wait_sync "                    // strongly recommended
96e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        ;
97e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
98e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian// extensions not exposed to applications but used by the ANDROID system
99e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian//      "EGL_ANDROID_blob_cache "               // strongly recommended
100e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian//      "EGL_IMG_hibernate_process "            // optional
101e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian//      "EGL_ANDROID_native_fence_sync "        // strongly recommended
102e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian//      "EGL_ANDROID_framebuffer_target "       // mandatory for HWC 1.1
103e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian//      "EGL_ANDROID_recordable "               // mandatory
104e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
105e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
106e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian/*
107e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian * EGL Extensions entry-points exposed to 3rd party applications
108e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian * (keep in sync with gExtensionString above)
109e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian *
110e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian */
111e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopianstatic const extention_map_t sExtensionMap[] = {
112e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    // EGL_KHR_lock_surface
113518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    { "eglLockSurfaceKHR",
114518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglLockSurfaceKHR },
115518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    { "eglUnlockSurfaceKHR",
116518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglUnlockSurfaceKHR },
117e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
118e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    // EGL_KHR_image, EGL_KHR_image_base
119518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    { "eglCreateImageKHR",
120518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglCreateImageKHR },
121518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    { "eglDestroyImageKHR",
122518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglDestroyImageKHR },
123e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
124e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    // EGL_KHR_reusable_sync, EGL_KHR_fence_sync
125e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    { "eglCreateSyncKHR",
126e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglCreateSyncKHR },
127e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    { "eglDestroySyncKHR",
128e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglDestroySyncKHR },
129e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    { "eglClientWaitSyncKHR",
130e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglClientWaitSyncKHR },
131e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    { "eglSignalSyncKHR",
132e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglSignalSyncKHR },
133e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    { "eglGetSyncAttribKHR",
134e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglGetSyncAttribKHR },
135e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
136e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    // EGL_NV_system_time
1371c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    { "eglGetSystemTimeFrequencyNV",
1381c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang            (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeFrequencyNV },
1391c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    { "eglGetSystemTimeNV",
1401c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang            (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeNV },
141e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
1422bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian    // EGL_KHR_wait_sync
1432bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian    { "eglWaitSyncKHR",
1442bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglWaitSyncKHR },
145e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
146e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    // EGL_ANDROID_presentation_time
147e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    { "eglPresentationTimeANDROID",
148e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian            (__eglMustCastToProperFunctionPointerType)&eglPresentationTimeANDROID },
149518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian};
150518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
151e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian/*
152e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian * These extensions entry-points should not be exposed to applications.
153e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian * They're used internally by the Android EGL layer.
154e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian */
155e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian#define FILTER_EXTENSIONS(procname) \
156e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        (!strcmp((procname), "eglSetBlobCacheFuncsANDROID") ||    \
157e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian         !strcmp((procname), "eglHibernateProcessIMG")      ||    \
158e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian         !strcmp((procname), "eglAwakenProcessIMG")         ||    \
159e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian         !strcmp((procname), "eglDupNativeFenceFDANDROID"))
160e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
161e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
162e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
163518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// accesses protected by sExtensionMapMutex
164518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianstatic DefaultKeyedVector<String8, __eglMustCastToProperFunctionPointerType> sGLExtentionMap;
165518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianstatic int sGLExtentionSlot = 0;
166518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianstatic pthread_mutex_t sExtensionMapMutex = PTHREAD_MUTEX_INITIALIZER;
167518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
168518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianstatic void(*findProcAddress(const char* name,
169518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        const extention_map_t* map, size_t n))() {
170518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    for (uint32_t i=0 ; i<n ; i++) {
171518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (!strcmp(name, map[i].name)) {
172518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            return map[i].address;
173518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
174518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
175518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return NULL;
176518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
177518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
178518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
179518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
180518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianextern void setGLHooksThreadSpecific(gl_hooks_t const *value);
181518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianextern EGLBoolean egl_init_drivers();
182518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianextern const __eglMustCastToProperFunctionPointerType gExtensionForwarders[MAX_NUMBER_OF_GL_EXTENSIONS];
183a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamyextern int getEGLDebugLevel();
184a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamyextern void setEGLDebugLevel(int level);
185518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianextern gl_hooks_t gHooksTrace;
186e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
187518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian} // namespace android;
188518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
189e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
190518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
191518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
192518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianstatic inline void clearError() { egl_tls_t::clearError(); }
193518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianstatic inline EGLContext getContext() { return egl_tls_t::getContext(); }
194518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
195518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
196518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
197518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLDisplay eglGetDisplay(EGLNativeDisplayType display)
198518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
199518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
200518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
201518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    uint32_t index = uint32_t(display);
202518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (index >= NUM_DISPLAYS) {
203518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
204518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
205518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
206518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (egl_init_drivers() == EGL_FALSE) {
207518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY);
208518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
209518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
210518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display);
211518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return dpy;
212518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
213518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
214518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
215518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// Initialization
216518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
217518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
218518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
219518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
220518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
221518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
222b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_display_ptr dp = get_display(dpy);
223518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
224518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
225518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLBoolean res = dp->initialize(major, minor);
226518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
227518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return res;
228518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
229518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
230518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglTerminate(EGLDisplay dpy)
231518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
232518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // NOTE: don't unload the drivers b/c some APIs can be called
233518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // after eglTerminate() has been called. eglTerminate() only
234518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // terminates an EGLDisplay, not a EGL itself.
235518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
236518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
237518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
238b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_display_ptr dp = get_display(dpy);
239518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
240518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
241518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLBoolean res = dp->terminate();
2424774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall
243518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return res;
244518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
245518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
246518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
247518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// configuration
248518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
249518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
250518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglGetConfigs(   EGLDisplay dpy,
251518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                            EGLConfig *configs,
252518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                            EGLint config_size, EGLint *num_config)
253518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
254518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
255518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
256b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
257518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
258518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
2597773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian    if (num_config==0) {
2607773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian        return setError(EGL_BAD_PARAMETER, EGL_FALSE);
261518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
262518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
2637773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian    EGLBoolean res = EGL_FALSE;
2647773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian    *num_config = 0;
2657773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian
2667773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
2677773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian    if (cnx->dso) {
2687773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian        res = cnx->egl.eglGetConfigs(
2697773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                dp->disp.dpy, configs, config_size, num_config);
270518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
2717773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian
2727773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian    return res;
273518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
274518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
275518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list,
276518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                            EGLConfig *configs, EGLint config_size,
277518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                            EGLint *num_config)
278518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
279518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
280518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
281b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
282518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
283518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
284518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (num_config==0) {
285518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return setError(EGL_BAD_PARAMETER, EGL_FALSE);
286518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
287518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
288518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLBoolean res = EGL_FALSE;
289518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    *num_config = 0;
290518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
291ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
292ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (cnx->dso) {
2931cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy        if (attrib_list) {
2941cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy            char value[PROPERTY_VALUE_MAX];
2951cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy            property_get("debug.egl.force_msaa", value, "false");
2961cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy
2971cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy            if (!strcmp(value, "true")) {
2981cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                size_t attribCount = 0;
2991cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                EGLint attrib = attrib_list[0];
3001cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy
3011cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                // Only enable MSAA if the context is OpenGL ES 2.0 and
302be3c3e4ecad501eecfe1f7a424a792f0f7f3f307Romain Guy                // if no caveat is requested
3031cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                const EGLint *attribRendererable = NULL;
3041cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                const EGLint *attribCaveat = NULL;
3051cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy
3061cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                // Count the number of attributes and look for
307be3c3e4ecad501eecfe1f7a424a792f0f7f3f307Romain Guy                // EGL_RENDERABLE_TYPE and EGL_CONFIG_CAVEAT
3081cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                while (attrib != EGL_NONE) {
3091cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    attrib = attrib_list[attribCount];
3101cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    switch (attrib) {
3111cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                        case EGL_RENDERABLE_TYPE:
3121cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                            attribRendererable = &attrib_list[attribCount];
3131cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                            break;
3141cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                        case EGL_CONFIG_CAVEAT:
3151cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                            attribCaveat = &attrib_list[attribCount];
3161cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                            break;
3171cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    }
3181cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    attribCount++;
3191cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                }
3201cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy
3211cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                if (attribRendererable && attribRendererable[1] == EGL_OPENGL_ES2_BIT &&
3221cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                        (!attribCaveat || attribCaveat[1] != EGL_NONE)) {
3234774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall
3241cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    // Insert 2 extra attributes to force-enable MSAA 4x
3251cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    EGLint aaAttribs[attribCount + 4];
3261cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    aaAttribs[0] = EGL_SAMPLE_BUFFERS;
3271cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    aaAttribs[1] = 1;
3281cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    aaAttribs[2] = EGL_SAMPLES;
3291cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    aaAttribs[3] = 4;
3301cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy
3311cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    memcpy(&aaAttribs[4], attrib_list, attribCount * sizeof(EGLint));
3321cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy
3331cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    EGLint numConfigAA;
3341cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    EGLBoolean resAA = cnx->egl.eglChooseConfig(
3351cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                            dp->disp.dpy, aaAttribs, configs, config_size, &numConfigAA);
3361cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy
3371cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    if (resAA == EGL_TRUE && numConfigAA > 0) {
3381cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                        ALOGD("Enabling MSAA 4x");
3391cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                        *num_config = numConfigAA;
3401cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                        return resAA;
3411cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                    }
3421cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy                }
3431cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy            }
3441cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy        }
3451cffc80f978c55f09203d9d9a905775b951ba59aRomain Guy
3467773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian        res = cnx->egl.eglChooseConfig(
3477773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                dp->disp.dpy, attrib_list, configs, config_size, num_config);
348518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
349518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return res;
350518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
351518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
352518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,
353518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        EGLint attribute, EGLint *value)
354518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
355518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
356518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
357b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_connection_t* cnx = NULL;
358b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display_connection(dpy, cnx);
359b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    if (!dp) return EGL_FALSE;
3604774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall
361518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return cnx->egl.eglGetConfigAttrib(
3627773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian            dp->disp.dpy, config, attribute, value);
363518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
364518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
365518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
366518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// surfaces
367518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
368518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
369c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall// The EGL_KHR_gl_colorspace spec hasn't been published yet, so these haven't
370c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall// been added to the Khronos egl.h.
371c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall#define EGL_GL_COLORSPACE_KHR           EGL_VG_COLORSPACE
372c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall#define EGL_GL_COLORSPACE_SRGB_KHR      EGL_VG_COLORSPACE_sRGB
373c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall#define EGL_GL_COLORSPACE_LINEAR_KHR    EGL_VG_COLORSPACE_LINEAR
374c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall
375c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall// Turn linear formats into corresponding sRGB formats when colorspace is
376c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall// EGL_GL_COLORSPACE_SRGB_KHR, or turn sRGB formats into corresponding linear
377c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall// formats when colorspace is EGL_GL_COLORSPACE_LINEAR_KHR. In any cases where
378c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall// the modification isn't possible, the original format is returned.
379c2e41222bf02a6579763974f82d65875cfa43481Jesse Hallstatic int modifyFormatColorspace(int fmt, EGLint colorspace) {
380c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall    if (colorspace == EGL_GL_COLORSPACE_LINEAR_KHR) {
381c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        switch (fmt) {
382c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall            case HAL_PIXEL_FORMAT_sRGB_A_8888: return HAL_PIXEL_FORMAT_RGBA_8888;
383bc2a90b024db82e3a277e5b366da17e00b21d98bJesse Hall            case HAL_PIXEL_FORMAT_sRGB_X_8888: return HAL_PIXEL_FORMAT_RGBX_8888;
384c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        }
385c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall    } else if (colorspace == EGL_GL_COLORSPACE_SRGB_KHR) {
386c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        switch (fmt) {
387c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall            case HAL_PIXEL_FORMAT_RGBA_8888: return HAL_PIXEL_FORMAT_sRGB_A_8888;
388bc2a90b024db82e3a277e5b366da17e00b21d98bJesse Hall            case HAL_PIXEL_FORMAT_RGBX_8888: return HAL_PIXEL_FORMAT_sRGB_X_8888;
389c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        }
390c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall    }
391c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall    return fmt;
392c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall}
393c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall
394518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLSurface eglCreateWindowSurface(  EGLDisplay dpy, EGLConfig config,
395518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                                    NativeWindowType window,
396518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                                    const EGLint *attrib_list)
397518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
398518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
399518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
400b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_connection_t* cnx = NULL;
401b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_display_ptr dp = validate_display_connection(dpy, cnx);
402b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    if (dp) {
403ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        EGLDisplay iDpy = dp->disp.dpy;
404518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
40581a63350527cafce6929309533c58586878f10b5Mathias Agopian        if (native_window_api_connect(window, NATIVE_WINDOW_API_EGL) != OK) {
406e6f43ddce78d6846af12550ff9193c5c6fe5844bSteve Block            ALOGE("EGLNativeWindowType %p already connected to another API",
40781a63350527cafce6929309533c58586878f10b5Mathias Agopian                    window);
40877a9b4a6bd21188e2744ae9dcd8092c6837bff7cJonathan Hamilton            return setError(EGL_BAD_ALLOC, EGL_NO_SURFACE);
40981a63350527cafce6929309533c58586878f10b5Mathias Agopian        }
41081a63350527cafce6929309533c58586878f10b5Mathias Agopian
4110f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian        // Set the native window's buffers format to match what this config requests.
412c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        // Whether to use sRGB gamma is not part of the EGLconfig, but is part
413c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        // of our native format. So if sRGB gamma is requested, we have to
414c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        // modify the EGLconfig's format before setting the native window's
415c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        // format.
416f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian#if WORKAROUND_BUG_10194508
417f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian#warning "WORKAROUND_10194508 enabled"
418f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian        EGLint format;
419f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian        if (!cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_NATIVE_VISUAL_ID,
420f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian                &format)) {
421f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian            ALOGE("eglGetConfigAttrib(EGL_NATIVE_VISUAL_ID) failed: %#x",
422f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian                    eglGetError());
423f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian            format = 0;
424f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian        }
425f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian        if (attrib_list) {
426f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian            for (const EGLint* attr = attrib_list; *attr != EGL_NONE;
427f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian                    attr += 2) {
428f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian                if (*attr == EGL_GL_COLORSPACE_KHR &&
429f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian                        dp->haveExtension("EGL_KHR_gl_colorspace")) {
430f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian                    format = modifyFormatColorspace(format, *(attr+1));
431f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian                }
432f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian            }
433f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian        }
434f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian#else
4350f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian        // by default, just pick RGBA_8888
4360f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian        EGLint format = HAL_PIXEL_FORMAT_RGBA_8888;
4370f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian
4380f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian        EGLint a = 0;
4390f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian        cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_ALPHA_SIZE, &a);
4400f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian        if (a > 0) {
4410f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            // alpha-channel requested, there's really only one suitable format
4420f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            format = HAL_PIXEL_FORMAT_RGBA_8888;
4430f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian        } else {
4440f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            EGLint r, g, b;
4450f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            r = g = b = 0;
4460f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_RED_SIZE,   &r);
4470f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_GREEN_SIZE, &g);
4480f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_BLUE_SIZE,  &b);
4490f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            EGLint colorDepth = r + g + b;
4500f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            if (colorDepth <= 16) {
4510f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian                format = HAL_PIXEL_FORMAT_RGB_565;
4520f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            } else {
4530f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian                format = HAL_PIXEL_FORMAT_RGBX_8888;
4540f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            }
455c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        }
4560f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian
4570f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian        // now select a corresponding sRGB format if needed
4580f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian        if (attrib_list && dp->haveExtension("EGL_KHR_gl_colorspace")) {
4590f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian            for (const EGLint* attr = attrib_list; *attr != EGL_NONE; attr += 2) {
4600f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian                if (*attr == EGL_GL_COLORSPACE_KHR) {
4610f288fcc9c1b2d23b1cff2f5c59689aef76b77aeMathias Agopian                    format = modifyFormatColorspace(format, attr[1]);
462bee205fd58a27c10a0895de5339e76025d429d2bJamie Gennis                }
463518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            }
464518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
465f4486c6ea4bcb728ee0f38df7a8ec75c389d9d2eMathias Agopian#endif
466c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        if (format != 0) {
467c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall            int err = native_window_set_buffers_format(window, format);
468c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall            if (err != 0) {
469c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall                ALOGE("error setting native window pixel format: %s (%d)",
470c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall                        strerror(-err), err);
471c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall                native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
472c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall                return setError(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
473c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall            }
474c2e41222bf02a6579763974f82d65875cfa43481Jesse Hall        }
475518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
47659769469e4b9b2d8b12c020eb44b030b3927a50bJamie Gennis        // the EGL spec requires that a new EGLSurface default to swap interval
47759769469e4b9b2d8b12c020eb44b030b3927a50bJamie Gennis        // 1, so explicitly set that on the window here.
47859769469e4b9b2d8b12c020eb44b030b3927a50bJamie Gennis        ANativeWindow* anw = reinterpret_cast<ANativeWindow*>(window);
47959769469e4b9b2d8b12c020eb44b030b3927a50bJamie Gennis        anw->setSwapInterval(anw, 1);
48059769469e4b9b2d8b12c020eb44b030b3927a50bJamie Gennis
481518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        EGLSurface surface = cnx->egl.eglCreateWindowSurface(
4827773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                iDpy, config, window, attrib_list);
483518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (surface != EGL_NO_SURFACE) {
484b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall            egl_surface_t* s = new egl_surface_t(dp.get(), config, window,
485b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall                    surface, cnx);
486518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            return s;
487518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
48881a63350527cafce6929309533c58586878f10b5Mathias Agopian
48981a63350527cafce6929309533c58586878f10b5Mathias Agopian        // EGLSurface creation failed
49081a63350527cafce6929309533c58586878f10b5Mathias Agopian        native_window_set_buffers_format(window, 0);
49181a63350527cafce6929309533c58586878f10b5Mathias Agopian        native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
492518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
493518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return EGL_NO_SURFACE;
494518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
495518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
496518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLSurface eglCreatePixmapSurface(  EGLDisplay dpy, EGLConfig config,
497518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                                    NativePixmapType pixmap,
498518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                                    const EGLint *attrib_list)
499518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
500518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
501518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
502b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_connection_t* cnx = NULL;
503b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_display_ptr dp = validate_display_connection(dpy, cnx);
504b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    if (dp) {
505518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        EGLSurface surface = cnx->egl.eglCreatePixmapSurface(
5067773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                dp->disp.dpy, config, pixmap, attrib_list);
507518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (surface != EGL_NO_SURFACE) {
508b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall            egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
509b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall                    surface, cnx);
510518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            return s;
511518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
512518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
513518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return EGL_NO_SURFACE;
514518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
515518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
516518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLSurface eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config,
517518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                                    const EGLint *attrib_list)
518518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
519518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
520518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
521b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_connection_t* cnx = NULL;
522b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_display_ptr dp = validate_display_connection(dpy, cnx);
523b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    if (dp) {
524518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        EGLSurface surface = cnx->egl.eglCreatePbufferSurface(
5257773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                dp->disp.dpy, config, attrib_list);
526518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (surface != EGL_NO_SURFACE) {
527b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall            egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL,
528b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall                    surface, cnx);
529518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            return s;
530518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
531518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
532518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return EGL_NO_SURFACE;
533518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
5344774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall
535518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
536518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
537518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
538518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
539b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
540518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
541518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
542b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), surface);
5435b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_s.get())
5445b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_SURFACE, EGL_FALSE);
545518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
546518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t * const s = get_surface(surface);
547ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface);
548518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (result == EGL_TRUE) {
549518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        _s.terminate();
550518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
551518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return result;
552518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
553518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
554518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surface,
555518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                            EGLint attribute, EGLint *value)
556518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
557518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
558518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
559b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
560518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
561518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
562b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), surface);
5635b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_s.get())
5645b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_SURFACE, EGL_FALSE);
565518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
566518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * const s = get_surface(surface);
5677773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian    return s->cnx->egl.eglQuerySurface(
5687773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian            dp->disp.dpy, s->surface, attribute, value);
569518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
570518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
571e8696a40e09b24b634214684d18526187b316a2fJamie Gennisvoid EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) {
5721c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
573e8696a40e09b24b634214684d18526187b316a2fJamie Gennis    clearError();
574e8696a40e09b24b634214684d18526187b316a2fJamie Gennis
575b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
576e8696a40e09b24b634214684d18526187b316a2fJamie Gennis    if (!dp) {
577e8696a40e09b24b634214684d18526187b316a2fJamie Gennis        return;
578e8696a40e09b24b634214684d18526187b316a2fJamie Gennis    }
579e8696a40e09b24b634214684d18526187b316a2fJamie Gennis
580b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), surface);
581e8696a40e09b24b634214684d18526187b316a2fJamie Gennis    if (!_s.get()) {
582e8696a40e09b24b634214684d18526187b316a2fJamie Gennis        setError(EGL_BAD_SURFACE, EGL_FALSE);
583e8696a40e09b24b634214684d18526187b316a2fJamie Gennis        return;
584e8696a40e09b24b634214684d18526187b316a2fJamie Gennis    }
585e8696a40e09b24b634214684d18526187b316a2fJamie Gennis}
586e8696a40e09b24b634214684d18526187b316a2fJamie Gennis
587518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
588518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// Contexts
589518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
590518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
591518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config,
592518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                            EGLContext share_list, const EGLint *attrib_list)
593518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
594518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
595518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
596b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_connection_t* cnx = NULL;
597b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display_connection(dpy, cnx);
5980673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock    if (dp) {
599518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (share_list != EGL_NO_CONTEXT) {
6000673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock            if (!ContextRef(dp.get(), share_list).get()) {
6010673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock                return setError(EGL_BAD_CONTEXT, EGL_NO_CONTEXT);
6020673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock            }
603518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            egl_context_t* const c = get_context(share_list);
604518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            share_list = c->context;
605518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
606518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        EGLContext context = cnx->egl.eglCreateContext(
6077773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                dp->disp.dpy, config, share_list, attrib_list);
608518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (context != EGL_NO_CONTEXT) {
609518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            // figure out if it's a GLESv1 or GLESv2
610518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            int version = 0;
611518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            if (attrib_list) {
612518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                while (*attrib_list != EGL_NONE) {
613518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                    GLint attr = *attrib_list++;
614518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                    GLint value = *attrib_list++;
615518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                    if (attr == EGL_CONTEXT_CLIENT_VERSION) {
616518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                        if (value == 1) {
6177773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                            version = egl_connection_t::GLESv1_INDEX;
6184774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall                        } else if (value == 2 || value == 3) {
6197773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                            version = egl_connection_t::GLESv2_INDEX;
620518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                        }
621518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                    }
622518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                };
623518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            }
624b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall            egl_context_t* c = new egl_context_t(dpy, context, config, cnx,
625b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall                    version);
6260469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy#if EGL_TRACE
627a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy            if (getEGLDebugLevel() > 0)
6280469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy                GLTrace_eglCreateContext(version, c);
6290469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy#endif
630518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            return c;
631518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
632518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
633518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return EGL_NO_CONTEXT;
634518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
635518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
636518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
637518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
638518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
639518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
640b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
6415b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!dp)
6425b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return EGL_FALSE;
643518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
644b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    ContextRef _c(dp.get(), ctx);
6455b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_c.get())
6465b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_CONTEXT, EGL_FALSE);
6474774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall
648518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_context_t * const c = get_context(ctx);
649ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    EGLBoolean result = c->cnx->egl.eglDestroyContext(dp->disp.dpy, c->context);
650518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (result == EGL_TRUE) {
651518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        _c.terminate();
652518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
653518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return result;
654518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
655518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
656518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglMakeCurrent(  EGLDisplay dpy, EGLSurface draw,
657518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                            EGLSurface read, EGLContext ctx)
658518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
659518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
660518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
661b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_display_ptr dp = validate_display(dpy);
662518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
663518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
6645b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    // If ctx is not EGL_NO_CONTEXT, read is not EGL_NO_SURFACE, or draw is not
6655b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    // EGL_NO_SURFACE, then an EGL_NOT_INITIALIZED error is generated if dpy is
6665b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    // a valid but uninitialized display.
667518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if ( (ctx != EGL_NO_CONTEXT) || (read != EGL_NO_SURFACE) ||
668518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         (draw != EGL_NO_SURFACE) ) {
669518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (!dp->isReady()) return setError(EGL_NOT_INITIALIZED, EGL_FALSE);
670518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
671518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
672518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // get a reference to the object passed in
673b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    ContextRef _c(dp.get(), ctx);
674b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _d(dp.get(), draw);
675b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _r(dp.get(), read);
676518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
677518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // validate the context (if not EGL_NO_CONTEXT)
6785b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if ((ctx != EGL_NO_CONTEXT) && !_c.get()) {
679518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        // EGL_NO_CONTEXT is valid
6800673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock        return setError(EGL_BAD_CONTEXT, EGL_FALSE);
681518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
682518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
683518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // these are the underlying implementation's object
684518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLContext impl_ctx  = EGL_NO_CONTEXT;
685518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLSurface impl_draw = EGL_NO_SURFACE;
686518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLSurface impl_read = EGL_NO_SURFACE;
687518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
688518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // these are our objects structs passed in
689518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_context_t       * c = NULL;
690518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * d = NULL;
691518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * r = NULL;
692518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
693518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // these are the current objects structs
694518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_context_t * cur_c = get_context(getContext());
6954774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall
696518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (ctx != EGL_NO_CONTEXT) {
697518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        c = get_context(ctx);
698518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        impl_ctx = c->context;
699518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    } else {
700518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        // no context given, use the implementation of the current context
7010673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock        if (draw != EGL_NO_SURFACE || read != EGL_NO_SURFACE) {
7020673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock            // calling eglMakeCurrent( ..., !=0, !=0, EGL_NO_CONTEXT);
7030673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock            return setError(EGL_BAD_MATCH, EGL_FALSE);
7040673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock        }
705518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (cur_c == NULL) {
706518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            // no current context
707518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            // not an error, there is just no current context.
708518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            return EGL_TRUE;
709518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
710518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
711518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
712518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // retrieve the underlying implementation's draw EGLSurface
713518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (draw != EGL_NO_SURFACE) {
7140673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock        if (!_d.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
715518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        d = get_surface(draw);
716518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        impl_draw = d->surface;
717518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
718518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
719518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // retrieve the underlying implementation's read EGLSurface
720518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (read != EGL_NO_SURFACE) {
7210673e1e2d77c673c2e9bc57616a02c3188b55ad1Michael Chock        if (!_r.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE);
722518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        r = get_surface(read);
723518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        impl_read = r->surface;
724518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
725518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
726518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
727b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    EGLBoolean result = dp->makeCurrent(c, cur_c,
728fb87e54a9af8bc5063ca4deebe81d90126992480Mathias Agopian            draw, read, ctx,
729fb87e54a9af8bc5063ca4deebe81d90126992480Mathias Agopian            impl_draw, impl_read, impl_ctx);
730518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
731518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (result == EGL_TRUE) {
732fb87e54a9af8bc5063ca4deebe81d90126992480Mathias Agopian        if (c) {
733518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
734518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            egl_tls_t::setContext(ctx);
7350469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy#if EGL_TRACE
736a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy            if (getEGLDebugLevel() > 0)
73793a826f78f6313db791e6fc880439189897651b3Siva Velusamy                GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
7380469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy#endif
739518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            _c.acquire();
740518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            _r.acquire();
741518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            _d.acquire();
742518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        } else {
743518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            setGLHooksThreadSpecific(&gHooksNoContext);
744518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            egl_tls_t::setContext(EGL_NO_CONTEXT);
745518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
7465fecea776a5f093c21ac1a0ad3552b847d4be23eMathias Agopian    } else {
747e6f43ddce78d6846af12550ff9193c5c6fe5844bSteve Block        // this will ALOGE the error
74863108c34ec181e923b68ee840bb7960f205466a7Mathias Agopian        egl_connection_t* const cnx = &gEGLImpl;
74963108c34ec181e923b68ee840bb7960f205466a7Mathias Agopian        result = setError(cnx->egl.eglGetError(), EGL_FALSE);
750518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
751518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return result;
752518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
753518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
754518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
755518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglQueryContext( EGLDisplay dpy, EGLContext ctx,
756518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                            EGLint attribute, EGLint *value)
757518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
758518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
759518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
760b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
761518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
762518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
763b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    ContextRef _c(dp.get(), ctx);
764518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!_c.get()) return setError(EGL_BAD_CONTEXT, EGL_FALSE);
765518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
766518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_context_t * const c = get_context(ctx);
7677773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian    return c->cnx->egl.eglQueryContext(
7687773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian            dp->disp.dpy, c->context, attribute, value);
769518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
770518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
771518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
772518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLContext eglGetCurrentContext(void)
773518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
774518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // could be called before eglInitialize(), but we wouldn't have a context
775518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // then, and this function would correctly return EGL_NO_CONTEXT.
776518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
777518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
778518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
779518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLContext ctx = getContext();
780518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return ctx;
781518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
782518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
783518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLSurface eglGetCurrentSurface(EGLint readdraw)
784518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
785518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // could be called before eglInitialize(), but we wouldn't have a context
786518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // then, and this function would correctly return EGL_NO_SURFACE.
787518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
788518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
789518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
790518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLContext ctx = getContext();
791518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (ctx) {
792518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        egl_context_t const * const c = get_context(ctx);
793518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
794518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        switch (readdraw) {
795518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            case EGL_READ: return c->read;
7964774338bd0ad1ebe42c311fd0c72f13786b5c800Jesse Hall            case EGL_DRAW: return c->draw;
797518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            default: return setError(EGL_BAD_PARAMETER, EGL_NO_SURFACE);
798518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
799518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
800518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return EGL_NO_SURFACE;
801518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
802518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
803518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLDisplay eglGetCurrentDisplay(void)
804518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
805518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // could be called before eglInitialize(), but we wouldn't have a context
806518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // then, and this function would correctly return EGL_NO_DISPLAY.
807518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
808518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
809518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
810518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLContext ctx = getContext();
811518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (ctx) {
812518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        egl_context_t const * const c = get_context(ctx);
813518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE);
814518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return c->dpy;
815518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
816518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return EGL_NO_DISPLAY;
817518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
818518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
819518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglWaitGL(void)
820518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
821518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
822518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
823ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
824ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (!cnx->dso)
825ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        return setError(EGL_BAD_CONTEXT, EGL_FALSE);
826ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian
827ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    return cnx->egl.eglWaitGL();
828518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
829518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
830518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglWaitNative(EGLint engine)
831518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
832518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
833518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
834ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
835ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (!cnx->dso)
836ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        return setError(EGL_BAD_CONTEXT, EGL_FALSE);
837ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian
838ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    return cnx->egl.eglWaitNative(engine);
839518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
840518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
841518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLint eglGetError(void)
842518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
843ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    EGLint err = EGL_SUCCESS;
844ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
845ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (cnx->dso) {
846ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        err = cnx->egl.eglGetError();
847518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
848ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (err == EGL_SUCCESS) {
849ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        err = egl_tls_t::getError();
850ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    }
851ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    return err;
852518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
853518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
854c07b52060acd627c8510c1a9151e0753fce76330Jesse Hallstatic __eglMustCastToProperFunctionPointerType findBuiltinGLWrapper(
855c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall        const char* procname) {
856c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall    const egl_connection_t* cnx = &gEGLImpl;
857c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall    void* proc = NULL;
858c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall
859c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall    proc = dlsym(cnx->libGles2, procname);
860c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall    if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
861c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall
862c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall    proc = dlsym(cnx->libGles1, procname);
863c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall    if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
864c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall
865c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall    return NULL;
866c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall}
867c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall
868518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian__eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname)
869518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
870518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // eglGetProcAddress() could be the very first function called
871518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // in which case we must make sure we've initialized ourselves, this
872518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // happens the first time egl_get_display() is called.
873518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
874518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
875518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
876518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (egl_init_drivers() == EGL_FALSE) {
877518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        setError(EGL_BAD_PARAMETER, NULL);
878518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return  NULL;
879518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
880518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
881e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    if (FILTER_EXTENSIONS(procname)) {
882aca51c06f38155f1435fbc6944d7fc0a9bf1e4e9Jamie Gennis        return NULL;
883aca51c06f38155f1435fbc6944d7fc0a9bf1e4e9Jamie Gennis    }
884aca51c06f38155f1435fbc6944d7fc0a9bf1e4e9Jamie Gennis
885518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    __eglMustCastToProperFunctionPointerType addr;
886e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    addr = findProcAddress(procname, sExtensionMap, NELEM(sExtensionMap));
887518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (addr) return addr;
888518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
889c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall    addr = findBuiltinGLWrapper(procname);
890c07b52060acd627c8510c1a9151e0753fce76330Jesse Hall    if (addr) return addr;
891aca51c06f38155f1435fbc6944d7fc0a9bf1e4e9Jamie Gennis
892518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // this protects accesses to sGLExtentionMap and sGLExtentionSlot
893518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    pthread_mutex_lock(&sExtensionMapMutex);
894518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
895518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        /*
896518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * Since eglGetProcAddress() is not associated to anything, it needs
897518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * to return a function pointer that "works" regardless of what
898518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * the current context is.
899518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         *
900518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * For this reason, we return a "forwarder", a small stub that takes
901518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * care of calling the function associated with the context
902518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * currently bound.
903518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         *
904518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * We first look for extensions we've already resolved, if we're seeing
905518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * this extension for the first time, we go through all our
906518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * implementations and call eglGetProcAddress() and record the
907518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * result in the appropriate implementation hooks and return the
908518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         * address of the forwarder corresponding to that hook set.
909518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         *
910518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian         */
911518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
912518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        const String8 name(procname);
913518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        addr = sGLExtentionMap.valueFor(name);
914518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        const int slot = sGLExtentionSlot;
915518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
916e6f43ddce78d6846af12550ff9193c5c6fe5844bSteve Block        ALOGE_IF(slot >= MAX_NUMBER_OF_GL_EXTENSIONS,
917518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                "no more slots for eglGetProcAddress(\"%s\")",
918518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                procname);
919518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
9200469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy#if EGL_TRACE
9210469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy        gl_hooks_t *debugHooks = GLTrace_getGLHooks();
9220469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy#endif
9230469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy
924518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        if (!addr && (slot < MAX_NUMBER_OF_GL_EXTENSIONS)) {
925518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            bool found = false;
926ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian
927ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian            egl_connection_t* const cnx = &gEGLImpl;
928ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian            if (cnx->dso && cnx->egl.eglGetProcAddress) {
929ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian                // Extensions are independent of the bound context
93069d100762c7c26d8328f4bb61cfef026d3a69bbfluliuhui                addr =
9317773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                cnx->hooks[egl_connection_t::GLESv1_INDEX]->ext.extensions[slot] =
9327773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                cnx->hooks[egl_connection_t::GLESv2_INDEX]->ext.extensions[slot] =
933518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#if EGL_TRACE
934ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian                debugHooks->ext.extensions[slot] =
935ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian                gHooksTrace.ext.extensions[slot] =
936518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian#endif
937ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian                        cnx->egl.eglGetProcAddress(procname);
93869d100762c7c26d8328f4bb61cfef026d3a69bbfluliuhui                if (addr) found = true;
939518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            }
940ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian
941518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            if (found) {
942518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                addr = gExtensionForwarders[slot];
943518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                sGLExtentionMap.add(name, addr);
944518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                sGLExtentionSlot++;
945518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian            }
946518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        }
947518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
948518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    pthread_mutex_unlock(&sExtensionMapMutex);
949518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return addr;
950518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
951518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
95228ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennisclass FrameCompletionThread : public Thread {
95328ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennispublic:
95428ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis
95528ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    static void queueSync(EGLSyncKHR sync) {
95628ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        static sp<FrameCompletionThread> thread(new FrameCompletionThread);
95728ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        static bool running = false;
95828ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        if (!running) {
95928ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            thread->run("GPUFrameCompletion");
96028ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            running = true;
96128ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        }
96228ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        {
96328ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            Mutex::Autolock lock(thread->mMutex);
96428ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            ScopedTrace st(ATRACE_TAG, String8::format("kicked off frame %d",
96528ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis                    thread->mFramesQueued).string());
96628ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            thread->mQueue.push_back(sync);
96728ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            thread->mCondition.signal();
96828ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            thread->mFramesQueued++;
96928ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            ATRACE_INT("GPU Frames Outstanding", thread->mQueue.size());
97028ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        }
97128ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    }
97228ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis
97328ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennisprivate:
97428ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    FrameCompletionThread() : mFramesQueued(0), mFramesCompleted(0) {}
97528ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis
97628ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    virtual bool threadLoop() {
97728ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        EGLSyncKHR sync;
97828ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        uint32_t frameNum;
97928ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        {
98028ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            Mutex::Autolock lock(mMutex);
98128ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            while (mQueue.isEmpty()) {
98228ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis                mCondition.wait(mMutex);
98328ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            }
98428ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            sync = mQueue[0];
98528ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            frameNum = mFramesCompleted;
98628ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        }
98728ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
98828ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        {
98928ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            ScopedTrace st(ATRACE_TAG, String8::format("waiting for frame %d",
99028ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis                    frameNum).string());
99128ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            EGLint result = eglClientWaitSyncKHR(dpy, sync, 0, EGL_FOREVER_KHR);
99228ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            if (result == EGL_FALSE) {
99328ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis                ALOGE("FrameCompletion: error waiting for fence: %#x", eglGetError());
99428ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
99528ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis                ALOGE("FrameCompletion: timeout waiting for fence");
99628ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            }
99728ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            eglDestroySyncKHR(dpy, sync);
99828ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        }
99928ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        {
100028ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            Mutex::Autolock lock(mMutex);
100128ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            mQueue.removeAt(0);
100228ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            mFramesCompleted++;
100328ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis            ATRACE_INT("GPU Frames Outstanding", mQueue.size());
100428ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        }
100528ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis        return true;
100628ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    }
100728ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis
100828ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    uint32_t mFramesQueued;
100928ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    uint32_t mFramesCompleted;
101028ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    Vector<EGLSyncKHR> mQueue;
101128ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    Condition mCondition;
101228ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis    Mutex mMutex;
101328ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis};
101428ef8d7911dbfd1bf8256fb43acba894d87fc07aJamie Gennis
1015518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface draw)
1016518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
10171c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
1018518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1019518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1020b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1021518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1022518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1023b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), draw);
10245b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_s.get())
10255b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_SURFACE, EGL_FALSE);
1026518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
10270469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy#if EGL_TRACE
1028a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy    gl_hooks_t const *trace_hooks = getGLTraceThreadSpecific();
1029a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy    if (getEGLDebugLevel() > 0) {
1030a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy        if (trace_hooks == NULL) {
1031a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy            if (GLTrace_start() < 0) {
1032a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy                ALOGE("Disabling Tracer for OpenGL ES");
1033a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy                setEGLDebugLevel(0);
1034a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy            } else {
1035a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy                // switch over to the trace version of hooks
1036a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy                EGLContext ctx = egl_tls_t::getContext();
1037a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy                egl_context_t * const c = get_context(ctx);
1038a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy                if (c) {
1039a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy                    setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1040a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy                    GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx);
1041a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy                }
1042a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy            }
1043a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy        }
1044a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy
10450469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy        GLTrace_eglSwapBuffers(dpy, draw);
1046a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy    } else if (trace_hooks != NULL) {
1047a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy        // tracing is now disabled, so switch back to the non trace version
1048a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy        EGLContext ctx = egl_tls_t::getContext();
1049a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy        egl_context_t * const c = get_context(ctx);
1050a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy        if (c) setGLHooksThreadSpecific(c->cnx->hooks[c->version]);
1051a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy        GLTrace_stop();
1052a73a97728befb5ba5ad647ab3b60058c4d536ba4Siva Velusamy    }
10530469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy#endif
10540469dd6d55fa331bfd7de9431da98b6340d82271Siva Velusamy
1055518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * const s = get_surface(draw);
10567db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian
1057ed6d08b70d775852f4827471814c83eba3606aaaMathias Agopian    if (CC_UNLIKELY(dp->traceGpuCompletion)) {
1058ed6d08b70d775852f4827471814c83eba3606aaaMathias Agopian        EGLSyncKHR sync = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL);
1059ed6d08b70d775852f4827471814c83eba3606aaaMathias Agopian        if (sync != EGL_NO_SYNC_KHR) {
1060ed6d08b70d775852f4827471814c83eba3606aaaMathias Agopian            FrameCompletionThread::queueSync(sync);
1061ed6d08b70d775852f4827471814c83eba3606aaaMathias Agopian        }
1062ed6d08b70d775852f4827471814c83eba3606aaaMathias Agopian    }
1063ed6d08b70d775852f4827471814c83eba3606aaaMathias Agopian
10647db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian    if (CC_UNLIKELY(dp->finishOnSwap)) {
10657db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian        uint32_t pixel;
10667db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian        egl_context_t * const c = get_context( egl_tls_t::getContext() );
10677db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian        if (c) {
10687db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian            // glReadPixels() ensures that the frame is complete
10697db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian            s->cnx->hooks[c->version]->gl.glReadPixels(0,0,1,1,
10707db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian                    GL_RGBA,GL_UNSIGNED_BYTE,&pixel);
10717db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian        }
10727db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian    }
10737db993a98b9239bd4e384cc4aa128262fe3cf52cMathias Agopian
1074ed6d08b70d775852f4827471814c83eba3606aaaMathias Agopian    return s->cnx->egl.eglSwapBuffers(dp->disp.dpy, s->surface);
1075518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1076518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1077518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglCopyBuffers(  EGLDisplay dpy, EGLSurface surface,
1078518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian                            NativePixmapType target)
1079518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1080518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1081518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1082b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1083518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1084518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1085b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), surface);
10865b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_s.get())
10875b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_SURFACE, EGL_FALSE);
1088518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1089518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * const s = get_surface(surface);
1090ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    return s->cnx->egl.eglCopyBuffers(dp->disp.dpy, s->surface, target);
1091518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1092518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1093518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopianconst char* eglQueryString(EGLDisplay dpy, EGLint name)
1094518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1095518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1096518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1097b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1098518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return (const char *) NULL;
1099518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1100518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    switch (name) {
1101518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        case EGL_VENDOR:
11024b9511c16195a646242eff833b0af212933b6ecaMathias Agopian            return dp->getVendorString();
1103518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        case EGL_VERSION:
11044b9511c16195a646242eff833b0af212933b6ecaMathias Agopian            return dp->getVersionString();
1105518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        case EGL_EXTENSIONS:
11064b9511c16195a646242eff833b0af212933b6ecaMathias Agopian            return dp->getExtensionString();
1107518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        case EGL_CLIENT_APIS:
11084b9511c16195a646242eff833b0af212933b6ecaMathias Agopian            return dp->getClientApiString();
1109518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1110518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return setError(EGL_BAD_PARAMETER, (const char *)0);
1111518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1112518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1113ca08833d5ea99130797e10ad68a651b50e99da74Mathias AgopianEGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name)
1114ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian{
1115ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian    clearError();
1116ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian
1117ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian    const egl_display_ptr dp = validate_display(dpy);
1118ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian    if (!dp) return (const char *) NULL;
1119ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian
1120ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian    switch (name) {
1121ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian        case EGL_VENDOR:
1122ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian            return dp->disp.queryString.vendor;
1123ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian        case EGL_VERSION:
1124ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian            return dp->disp.queryString.version;
1125ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian        case EGL_EXTENSIONS:
1126ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian            return dp->disp.queryString.extensions;
1127ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian        case EGL_CLIENT_APIS:
1128ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian            return dp->disp.queryString.clientApi;
1129ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian    }
1130ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian    return setError(EGL_BAD_PARAMETER, (const char *)0);
1131ca08833d5ea99130797e10ad68a651b50e99da74Mathias Agopian}
1132518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1133518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
1134518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// EGL 1.1
1135518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
1136518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1137518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglSurfaceAttrib(
1138518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
1139518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1140518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1141518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1142b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1143518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1144518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1145b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), surface);
11465b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_s.get())
11475b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_SURFACE, EGL_FALSE);
1148518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1149518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * const s = get_surface(surface);
1150518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (s->cnx->egl.eglSurfaceAttrib) {
1151518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return s->cnx->egl.eglSurfaceAttrib(
1152ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian                dp->disp.dpy, s->surface, attribute, value);
1153518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1154518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return setError(EGL_BAD_SURFACE, EGL_FALSE);
1155518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1156518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1157518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglBindTexImage(
1158518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1159518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1160518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1161518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1162b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1163518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1164518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1165b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), surface);
11665b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_s.get())
11675b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_SURFACE, EGL_FALSE);
1168518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1169518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * const s = get_surface(surface);
1170518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (s->cnx->egl.eglBindTexImage) {
1171518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return s->cnx->egl.eglBindTexImage(
1172ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian                dp->disp.dpy, s->surface, buffer);
1173518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1174518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return setError(EGL_BAD_SURFACE, EGL_FALSE);
1175518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1176518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1177518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglReleaseTexImage(
1178518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1179518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1180518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1181518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1182b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1183518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1184518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1185b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), surface);
11865b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_s.get())
11875b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_SURFACE, EGL_FALSE);
1188518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1189518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * const s = get_surface(surface);
1190518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (s->cnx->egl.eglReleaseTexImage) {
1191518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return s->cnx->egl.eglReleaseTexImage(
1192ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian                dp->disp.dpy, s->surface, buffer);
1193518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1194518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return setError(EGL_BAD_SURFACE, EGL_FALSE);
1195518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1196518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1197518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
1198518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1199518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1200518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1201b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1202518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1203518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1204518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLBoolean res = EGL_TRUE;
1205ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
1206ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (cnx->dso && cnx->egl.eglSwapInterval) {
1207ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        res = cnx->egl.eglSwapInterval(dp->disp.dpy, interval);
1208518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1209ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian
1210518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return res;
1211518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1212518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1213518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1214518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
1215518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// EGL 1.2
1216518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
1217518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1218518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglWaitClient(void)
1219518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1220518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1221518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1222ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
1223ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (!cnx->dso)
1224ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        return setError(EGL_BAD_CONTEXT, EGL_FALSE);
1225ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian
1226ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    EGLBoolean res;
1227ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (cnx->egl.eglWaitClient) {
1228ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        res = cnx->egl.eglWaitClient();
1229ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    } else {
1230ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        res = cnx->egl.eglWaitGL();
1231518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1232518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return res;
1233518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1234518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1235518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglBindAPI(EGLenum api)
1236518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1237518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1238518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1239518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (egl_init_drivers() == EGL_FALSE) {
1240518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1241518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1242518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1243518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // bind this API on all EGLs
1244518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLBoolean res = EGL_TRUE;
1245ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
1246ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (cnx->dso && cnx->egl.eglBindAPI) {
1247ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        res = cnx->egl.eglBindAPI(api);
1248518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1249518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return res;
1250518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1251518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1252518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLenum eglQueryAPI(void)
1253518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1254518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1255518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1256518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (egl_init_drivers() == EGL_FALSE) {
1257518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return setError(EGL_BAD_PARAMETER, EGL_FALSE);
1258518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1259518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1260ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
1261ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (cnx->dso && cnx->egl.eglQueryAPI) {
1262ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        return cnx->egl.eglQueryAPI();
1263518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1264ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian
1265518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // or, it can only be OpenGL ES
1266518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return EGL_OPENGL_ES_API;
1267518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1268518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1269518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglReleaseThread(void)
1270518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1271518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1272518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
12734e620ddce344e946ced992f61a69c367ff92fe24Mathias Agopian#if EGL_TRACE
12744e620ddce344e946ced992f61a69c367ff92fe24Mathias Agopian    if (getEGLDebugLevel() > 0)
12754e620ddce344e946ced992f61a69c367ff92fe24Mathias Agopian        GLTrace_eglReleaseThread();
12764e620ddce344e946ced992f61a69c367ff92fe24Mathias Agopian#endif
12774e620ddce344e946ced992f61a69c367ff92fe24Mathias Agopian
1278518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    // If there is context bound to the thread, release it
1279fb87e54a9af8bc5063ca4deebe81d90126992480Mathias Agopian    egl_display_t::loseCurrent(get_context(getContext()));
1280518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1281ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
1282ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (cnx->dso && cnx->egl.eglReleaseThread) {
1283ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        cnx->egl.eglReleaseThread();
1284518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1285518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_tls_t::clearTLS();
1286518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return EGL_TRUE;
1287518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1288518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1289518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLSurface eglCreatePbufferFromClientBuffer(
1290518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian          EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer,
1291518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian          EGLConfig config, const EGLint *attrib_list)
1292518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1293518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1294518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1295b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    egl_connection_t* cnx = NULL;
1296b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display_connection(dpy, cnx);
1297b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    if (!dp) return EGL_FALSE;
1298518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (cnx->egl.eglCreatePbufferFromClientBuffer) {
1299518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return cnx->egl.eglCreatePbufferFromClientBuffer(
13007773c435bc5da8217433e1b242d3a6712a17b5f7Mathias Agopian                dp->disp.dpy, buftype, buffer, config, attrib_list);
1301518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1302518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return setError(EGL_BAD_CONFIG, EGL_NO_SURFACE);
1303518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1304518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1305518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
1306518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// EGL_EGLEXT_VERSION 3
1307518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
1308518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1309518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface,
1310518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        const EGLint *attrib_list)
1311518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1312518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1313518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1314b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1315518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1316518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1317b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), surface);
13185b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_s.get())
13195b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_SURFACE, EGL_FALSE);
1320518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1321518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * const s = get_surface(surface);
1322518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (s->cnx->egl.eglLockSurfaceKHR) {
1323518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        return s->cnx->egl.eglLockSurfaceKHR(
1324ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian                dp->disp.dpy, s->surface, attrib_list);
1325518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1326518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1327518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1328518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1329518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface)
1330518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1331518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1332518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1333b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1334518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1335518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1336b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    SurfaceRef _s(dp.get(), surface);
13375b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian    if (!_s.get())
13385b287a6ea8dfac7ab3e03ae1e98f9e2214cbae09Mathias Agopian        return setError(EGL_BAD_SURFACE, EGL_FALSE);
1339518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1340518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    egl_surface_t const * const s = get_surface(surface);
1341518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (s->cnx->egl.eglUnlockSurfaceKHR) {
1342ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        return s->cnx->egl.eglUnlockSurfaceKHR(dp->disp.dpy, s->surface);
1343518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1344518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return setError(EGL_BAD_DISPLAY, EGL_FALSE);
1345518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1346518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1347518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1348518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian        EGLClientBuffer buffer, const EGLint *attrib_list)
1349518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1350518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1351518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1352b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1353518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_NO_IMAGE_KHR;
1354518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1355b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    ContextRef _c(dp.get(), ctx);
13567c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    egl_context_t * const c = _c.get();
1357518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
13587c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    EGLImageKHR result = EGL_NO_IMAGE_KHR;
13597c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
13607c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    if (cnx->dso && cnx->egl.eglCreateImageKHR) {
13617c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian        result = cnx->egl.eglCreateImageKHR(
13627c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian                dp->disp.dpy,
13637c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian                c ? c->context : EGL_NO_CONTEXT,
13647c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian                target, buffer, attrib_list);
1365518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
13667c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    return result;
1367518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1368518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1369518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img)
1370518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1371518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1372518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1373b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1374518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1375518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1376646a5c593f9819dc5da6a1ec859bc70cb7ba096fSteven Holte    EGLBoolean result = EGL_FALSE;
1377ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
13787c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    if (cnx->dso && cnx->egl.eglDestroyImageKHR) {
1379646a5c593f9819dc5da6a1ec859bc70cb7ba096fSteven Holte        result = cnx->egl.eglDestroyImageKHR(dp->disp.dpy, img);
1380518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1381646a5c593f9819dc5da6a1ec859bc70cb7ba096fSteven Holte    return result;
1382518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1383518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1384518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
1385518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// EGL_EGLEXT_VERSION 5
1386518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
1387518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1388518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1389518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list)
1390518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1391518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1392518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1393b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1394518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_NO_SYNC_KHR;
1395518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1396518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLSyncKHR result = EGL_NO_SYNC_KHR;
13977c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
13987c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    if (cnx->dso && cnx->egl.eglCreateSyncKHR) {
13997c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian        result = cnx->egl.eglCreateSyncKHR(dp->disp.dpy, type, attrib_list);
1400518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
14017c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    return result;
1402518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1403518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1404518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias AgopianEGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync)
1405518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1406518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1407518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1408b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1409518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1410518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1411518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    EGLBoolean result = EGL_FALSE;
14127c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
14137c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    if (cnx->dso && cnx->egl.eglDestroySyncKHR) {
14147c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian        result = cnx->egl.eglDestroySyncKHR(dp->disp.dpy, sync);
1415518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
1416518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    return result;
1417518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1418518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1419e9b3dfb7d5cc233747407381a51a081c335dc076Mathias AgopianEGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) {
1420e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    clearError();
1421e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
1422e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    const egl_display_ptr dp = validate_display(dpy);
1423e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    if (!dp) return EGL_FALSE;
1424e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
1425e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    EGLBoolean result = EGL_FALSE;
1426e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
1427e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    if (cnx->dso && cnx->egl.eglSignalSyncKHR) {
1428e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian        result = cnx->egl.eglSignalSyncKHR(
1429e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian                dp->disp.dpy, sync, mode);
1430e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    }
1431e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian    return result;
1432e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian}
1433e9b3dfb7d5cc233747407381a51a081c335dc076Mathias Agopian
14347c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias AgopianEGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync,
14357c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian        EGLint flags, EGLTimeKHR timeout)
1436518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1437518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1438518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1439b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1440518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1441518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
14427c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    EGLBoolean result = EGL_FALSE;
14437c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
14447c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    if (cnx->dso && cnx->egl.eglClientWaitSyncKHR) {
14457c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian        result = cnx->egl.eglClientWaitSyncKHR(
14467c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian                dp->disp.dpy, sync, flags, timeout);
1447518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
14487c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    return result;
1449518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1450518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
14517c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias AgopianEGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync,
14527c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian        EGLint attribute, EGLint *value)
1453518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian{
1454518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    clearError();
1455518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1456b29e5e8c2682ae145e8c56d9afb061f8da7f854cJesse Hall    const egl_display_ptr dp = validate_display(dpy);
1457518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    if (!dp) return EGL_FALSE;
1458518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
14597c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    EGLBoolean result = EGL_FALSE;
14607c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
14617c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    if (cnx->dso && cnx->egl.eglGetSyncAttribKHR) {
14627c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian        result = cnx->egl.eglGetSyncAttribKHR(
14637c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian                dp->disp.dpy, sync, attribute, value);
1464518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian    }
14657c0441ac271f4e00a2d63eb3048c037ebffa90b9Mathias Agopian    return result;
1466518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian}
1467518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
1468518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
14692bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian// EGL_EGLEXT_VERSION 15
1470518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian// ----------------------------------------------------------------------------
1471518ec112f468eb67bf681b3eec896d7bfb4ff98dMathias Agopian
14722bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias AgopianEGLint eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) {
1473331841b96b92646c93c87627c03f77b892f711cdJamie Gennis    clearError();
1474331841b96b92646c93c87627c03f77b892f711cdJamie Gennis    const egl_display_ptr dp = validate_display(dpy);
14752bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian    if (!dp) return EGL_FALSE;
14762bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian    EGLint result = EGL_FALSE;
1477331841b96b92646c93c87627c03f77b892f711cdJamie Gennis    egl_connection_t* const cnx = &gEGLImpl;
14782bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian    if (cnx->dso && cnx->egl.eglWaitSyncKHR) {
14792bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian        result = cnx->egl.eglWaitSyncKHR(dp->disp.dpy, sync, flags);
1480331841b96b92646c93c87627c03f77b892f711cdJamie Gennis    }
1481331841b96b92646c93c87627c03f77b892f711cdJamie Gennis    return result;
1482331841b96b92646c93c87627c03f77b892f711cdJamie Gennis}
14831c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
14842bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian// ----------------------------------------------------------------------------
14852bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian// ANDROID extensions
14862bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian// ----------------------------------------------------------------------------
14872bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian
14882bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias AgopianEGLint eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync)
1489010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis{
1490010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis    clearError();
1491010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis
1492010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis    const egl_display_ptr dp = validate_display(dpy);
1493010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis    if (!dp) return EGL_NO_NATIVE_FENCE_FD_ANDROID;
1494010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis
14952bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian    EGLint result = EGL_NO_NATIVE_FENCE_FD_ANDROID;
1496010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis    egl_connection_t* const cnx = &gEGLImpl;
14972bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian    if (cnx->dso && cnx->egl.eglDupNativeFenceFDANDROID) {
14982bb716871cf8bfadfff1193ed798da3bffc1f8ecMathias Agopian        result = cnx->egl.eglDupNativeFenceFDANDROID(dp->disp.dpy, sync);
1499010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis    }
1500010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis    return result;
1501010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis}
1502010dd4fb892aecf71e4631c22148fe57ef5b3958Jamie Gennis
15037284145d564fa8a422a8e564a38c730fb4a2962bAndy McFaddenEGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface,
15047284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden        EGLnsecsANDROID time)
15057284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden{
15067284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    clearError();
15077284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden
15087284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    const egl_display_ptr dp = validate_display(dpy);
15097284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    if (!dp) {
15107284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden        return EGL_FALSE;
15117284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    }
15127284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden
15137284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    SurfaceRef _s(dp.get(), surface);
15147284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    if (!_s.get()) {
15157284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden        setError(EGL_BAD_SURFACE, EGL_FALSE);
15167284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden        return EGL_FALSE;
15177284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    }
15187284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden
15197284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    egl_surface_t const * const s = get_surface(surface);
15207284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    native_window_set_buffers_timestamp(s->win.get(), time);
15217284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden
15227284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden    return EGL_TRUE;
15237284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden}
15247284145d564fa8a422a8e564a38c730fb4a2962bAndy McFadden
15251c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang// ----------------------------------------------------------------------------
15261c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang// NVIDIA extensions
15271c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang// ----------------------------------------------------------------------------
15281c3d72a2291827fb15e2ef311a571c860e0dba41Jonas YangEGLuint64NV eglGetSystemTimeFrequencyNV()
15291c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang{
15301c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    clearError();
15311c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
15321c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    if (egl_init_drivers() == EGL_FALSE) {
15331c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang        return setError(EGL_BAD_PARAMETER, EGL_FALSE);
15341c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    }
15351c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
15361c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    EGLuint64NV ret = 0;
1537ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
15381c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
1539ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (cnx->dso && cnx->egl.eglGetSystemTimeFrequencyNV) {
1540ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        return cnx->egl.eglGetSystemTimeFrequencyNV();
15411c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    }
15421c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
15430e8bbee5775d81c7bbc479b995496cac9238559fMathias Agopian    return setErrorQuiet(EGL_BAD_DISPLAY, 0);
15441c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang}
15451c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
15461c3d72a2291827fb15e2ef311a571c860e0dba41Jonas YangEGLuint64NV eglGetSystemTimeNV()
15471c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang{
15481c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    clearError();
15491c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
15501c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    if (egl_init_drivers() == EGL_FALSE) {
15511c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang        return setError(EGL_BAD_PARAMETER, EGL_FALSE);
15521c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    }
15531c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
15541c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    EGLuint64NV ret = 0;
1555ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    egl_connection_t* const cnx = &gEGLImpl;
15561c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
1557ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian    if (cnx->dso && cnx->egl.eglGetSystemTimeNV) {
1558ada798b7ca7cabc255aa159964b64975e7fdb2dfMathias Agopian        return cnx->egl.eglGetSystemTimeNV();
15591c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang    }
15601c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang
15610e8bbee5775d81c7bbc479b995496cac9238559fMathias Agopian    return setErrorQuiet(EGL_BAD_DISPLAY, 0);
15621c3d72a2291827fb15e2ef311a571c860e0dba41Jonas Yang}
1563