OSDN Git Service

Fix the GLES version number in the emulator encoder
[android-x86/device-generic-goldfish-opengl.git] / system / egl / egl.cpp
1 /*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include "HostConnection.h"
18 #include "ThreadInfo.h"
19 #include "eglDisplay.h"
20 #include "egl_ftable.h"
21 #include <cutils/log.h>
22 #include "gralloc_cb.h"
23 #include "GLClientState.h"
24 #include "GLSharedGroup.h"
25 #include "eglContext.h"
26 #include "ClientAPIExts.h"
27 #include "EGLImage.h"
28
29 #include "GLEncoder.h"
30 #ifdef WITH_GLES2
31 #include "GL2Encoder.h"
32 #endif
33
34 #include <system/window.h>
35
36 template<typename T>
37 static T setErrorFunc(GLint error, T returnValue) {
38     getEGLThreadInfo()->eglError = error;
39     return returnValue;
40 }
41
42 const char *  eglStrError(EGLint err)
43 {
44     switch (err){
45         case EGL_SUCCESS:           return "EGL_SUCCESS";
46         case EGL_NOT_INITIALIZED:   return "EGL_NOT_INITIALIZED";
47         case EGL_BAD_ACCESS:        return "EGL_BAD_ACCESS";
48         case EGL_BAD_ALLOC:         return "EGL_BAD_ALLOC";
49         case EGL_BAD_ATTRIBUTE:     return "EGL_BAD_ATTRIBUTE";
50         case EGL_BAD_CONFIG:        return "EGL_BAD_CONFIG";
51         case EGL_BAD_CONTEXT:       return "EGL_BAD_CONTEXT";
52         case EGL_BAD_CURRENT_SURFACE: return "EGL_BAD_CURRENT_SURFACE";
53         case EGL_BAD_DISPLAY:       return "EGL_BAD_DISPLAY";
54         case EGL_BAD_MATCH:         return "EGL_BAD_MATCH";
55         case EGL_BAD_NATIVE_PIXMAP: return "EGL_BAD_NATIVE_PIXMAP";
56         case EGL_BAD_NATIVE_WINDOW: return "EGL_BAD_NATIVE_WINDOW";
57         case EGL_BAD_PARAMETER:     return "EGL_BAD_PARAMETER";
58         case EGL_BAD_SURFACE:       return "EGL_BAD_SURFACE";
59         case EGL_CONTEXT_LOST:      return "EGL_CONTEXT_LOST";
60         default: return "UNKNOWN";
61     }
62 }
63
64 #define LOG_EGL_ERRORS 1
65
66 #ifdef LOG_EGL_ERRORS
67
68 #define setErrorReturn(error, retVal)     \
69     {                                                \
70         ALOGE("tid %d: %s(%d): error 0x%x (%s)", gettid(), __FUNCTION__, __LINE__, error, eglStrError(error));     \
71         return setErrorFunc(error, retVal);            \
72     }
73
74 #define RETURN_ERROR(ret,err)           \
75     ALOGE("tid %d: %s(%d): error 0x%x (%s)", gettid(), __FUNCTION__, __LINE__, err, eglStrError(err));    \
76     getEGLThreadInfo()->eglError = err;    \
77     return ret;
78
79 #else //!LOG_EGL_ERRORS
80
81 #define setErrorReturn(error, retVal) return setErrorFunc(error, retVal);
82
83 #define RETURN_ERROR(ret,err)           \
84     getEGLThreadInfo()->eglError = err; \
85     return ret;
86
87 #endif //LOG_EGL_ERRORS
88
89 #define VALIDATE_CONFIG(cfg,ret) \
90     if(((intptr_t)cfg<0)||((intptr_t)cfg>s_display.getNumConfigs())) { \
91         RETURN_ERROR(ret,EGL_BAD_CONFIG); \
92     }
93
94 #define VALIDATE_DISPLAY(dpy,ret) \
95     if ((dpy) != (EGLDisplay)&s_display) { \
96         RETURN_ERROR(ret, EGL_BAD_DISPLAY);    \
97     }
98
99 #define VALIDATE_DISPLAY_INIT(dpy,ret) \
100     VALIDATE_DISPLAY(dpy, ret)    \
101     if (!s_display.initialized()) {        \
102         RETURN_ERROR(ret, EGL_NOT_INITIALIZED);    \
103     }
104
105 #define DEFINE_HOST_CONNECTION \
106     HostConnection *hostCon = HostConnection::get(); \
107     renderControl_encoder_context_t *rcEnc = (hostCon ? hostCon->rcEncoder() : NULL)
108
109 #define DEFINE_AND_VALIDATE_HOST_CONNECTION(ret) \
110     HostConnection *hostCon = HostConnection::get(); \
111     if (!hostCon) { \
112         ALOGE("egl: Failed to get host connection\n"); \
113         return ret; \
114     } \
115     renderControl_encoder_context_t *rcEnc = hostCon->rcEncoder(); \
116     if (!rcEnc) { \
117         ALOGE("egl: Failed to get renderControl encoder context\n"); \
118         return ret; \
119     }
120
121 #define VALIDATE_CONTEXT_RETURN(context,ret)        \
122     if (!context) {                                    \
123         RETURN_ERROR(ret,EGL_BAD_CONTEXT);    \
124     }
125
126 #define VALIDATE_SURFACE_RETURN(surface, ret)    \
127     if (surface != EGL_NO_SURFACE) {    \
128         egl_surface_t* s( static_cast<egl_surface_t*>(surface) );    \
129         if (s->dpy != (EGLDisplay)&s_display)    \
130             setErrorReturn(EGL_BAD_DISPLAY, EGL_FALSE);    \
131     }
132
133
134 EGLContext_t::EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx) :
135     dpy(dpy),
136     config(config),
137     read(EGL_NO_SURFACE),
138     draw(EGL_NO_SURFACE),
139     shareCtx(shareCtx),
140     rcContext(0),
141     versionString(NULL),
142     vendorString(NULL),
143     rendererString(NULL),
144     shaderVersionString(NULL),
145     extensionString(NULL),
146     deletePending(0)
147 {
148     flags = 0;
149     version = 1;
150     clientState = new GLClientState();
151     if (shareCtx)
152         sharedGroup = shareCtx->getSharedGroup();
153     else
154         sharedGroup = GLSharedGroupPtr(new GLSharedGroup());
155 };
156
157 EGLContext_t::~EGLContext_t()
158 {
159     delete clientState;
160     delete [] versionString;
161     delete [] vendorString;
162     delete [] rendererString;
163     delete [] shaderVersionString;
164     delete [] extensionString;
165 }
166
167 // ----------------------------------------------------------------------------
168 //egl_surface_t
169
170 //we don't need to handle depth since it's handled when window created on the host
171
172 struct egl_surface_t {
173
174     EGLDisplay          dpy;
175     EGLConfig           config;
176
177
178     egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType);
179     virtual     ~egl_surface_t();
180
181     virtual     void        setSwapInterval(int interval) = 0;
182     virtual     EGLBoolean  swapBuffers() = 0;
183
184     EGLint      getSwapBehavior() const;
185     uint32_t    getRcSurface()   { return rcSurface; }
186     EGLint      getSurfaceType() { return surfaceType; }
187
188     EGLint      getWidth(){ return width; }
189     EGLint      getHeight(){ return height; }
190     void        setTextureFormat(EGLint _texFormat) { texFormat = _texFormat; }
191     EGLint      getTextureFormat() { return texFormat; }
192     void        setTextureTarget(EGLint _texTarget) { texTarget = _texTarget; }
193     EGLint      getTextureTarget() { return texTarget; }
194
195 private:
196     //
197     //Surface attributes
198     //
199     EGLint      width;
200     EGLint      height;
201     EGLint      texFormat;
202     EGLint      texTarget;
203
204 protected:
205     void        setWidth(EGLint w)  { width = w;  }
206     void        setHeight(EGLint h) { height = h; }
207
208     EGLint      surfaceType;
209     uint32_t    rcSurface; //handle to surface created via remote control
210 };
211
212 egl_surface_t::egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType)
213     : dpy(dpy), config(config), surfaceType(surfaceType), rcSurface(0)
214 {
215     width = 0;
216     height = 0;
217     texFormat = EGL_NO_TEXTURE;
218     texTarget = EGL_NO_TEXTURE;
219 }
220
221 EGLint egl_surface_t::getSwapBehavior() const {
222     return EGL_BUFFER_PRESERVED;
223 }
224
225 egl_surface_t::~egl_surface_t()
226 {
227 }
228
229 // ----------------------------------------------------------------------------
230 // egl_window_surface_t
231
232 struct egl_window_surface_t : public egl_surface_t {
233     static egl_window_surface_t* create(
234             EGLDisplay dpy, EGLConfig config, EGLint surfType,
235             ANativeWindow* window);
236
237     virtual ~egl_window_surface_t();
238
239     virtual void       setSwapInterval(int interval);
240     virtual EGLBoolean swapBuffers();
241
242 private:
243     egl_window_surface_t(
244             EGLDisplay dpy, EGLConfig config, EGLint surfType,
245             ANativeWindow* window);
246     EGLBoolean init();
247
248     ANativeWindow*              nativeWindow;
249     android_native_buffer_t*    buffer;
250 };
251
252 egl_window_surface_t::egl_window_surface_t (
253         EGLDisplay dpy, EGLConfig config, EGLint surfType,
254         ANativeWindow* window)
255 :   egl_surface_t(dpy, config, surfType),
256     nativeWindow(window),
257     buffer(NULL)
258 {
259     // keep a reference on the window
260     nativeWindow->common.incRef(&nativeWindow->common);
261 }
262
263 EGLBoolean egl_window_surface_t::init()
264 {
265     if (nativeWindow->dequeueBuffer_DEPRECATED(nativeWindow, &buffer) != NO_ERROR) {
266         setErrorReturn(EGL_BAD_ALLOC, EGL_FALSE);
267     }
268     setWidth(buffer->width);
269     setHeight(buffer->height);
270
271     DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
272     rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uintptr_t)config,
273             getWidth(), getHeight());
274     if (!rcSurface) {
275         ALOGE("rcCreateWindowSurface returned 0");
276         return EGL_FALSE;
277     }
278     rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface,
279             ((cb_handle_t*)(buffer->handle))->hostHandle);
280
281     return EGL_TRUE;
282 }
283
284 egl_window_surface_t* egl_window_surface_t::create(
285         EGLDisplay dpy, EGLConfig config, EGLint surfType,
286         ANativeWindow* window)
287 {
288     egl_window_surface_t* wnd = new egl_window_surface_t(
289             dpy, config, surfType, window);
290     if (wnd && !wnd->init()) {
291         delete wnd;
292         wnd = NULL;
293     }
294     return wnd;
295 }
296
297 egl_window_surface_t::~egl_window_surface_t() {
298     DEFINE_HOST_CONNECTION;
299     if (rcSurface && rcEnc) {
300         rcEnc->rcDestroyWindowSurface(rcEnc, rcSurface);
301     }
302     if (buffer) {
303         nativeWindow->cancelBuffer_DEPRECATED(nativeWindow, buffer);
304     }
305     nativeWindow->common.decRef(&nativeWindow->common);
306 }
307
308 void egl_window_surface_t::setSwapInterval(int interval)
309 {
310     nativeWindow->setSwapInterval(nativeWindow, interval);
311 }
312
313 EGLBoolean egl_window_surface_t::swapBuffers()
314 {
315     DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
316
317     rcEnc->rcFlushWindowColorBuffer(rcEnc, rcSurface);
318
319     nativeWindow->queueBuffer_DEPRECATED(nativeWindow, buffer);
320     if (nativeWindow->dequeueBuffer_DEPRECATED(nativeWindow, &buffer)) {
321         buffer = NULL;
322         setErrorReturn(EGL_BAD_ALLOC, EGL_FALSE);
323     }
324
325     rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface,
326             ((cb_handle_t *)(buffer->handle))->hostHandle);
327
328     setWidth(buffer->width);
329     setHeight(buffer->height);
330
331     return EGL_TRUE;
332 }
333
334 // ----------------------------------------------------------------------------
335 //egl_pbuffer_surface_t
336
337 struct egl_pbuffer_surface_t : public egl_surface_t {
338     static egl_pbuffer_surface_t* create(EGLDisplay dpy, EGLConfig config,
339             EGLint surfType, int32_t w, int32_t h, GLenum pixelFormat);
340
341     virtual ~egl_pbuffer_surface_t();
342
343     virtual void       setSwapInterval(int interval) { (void)interval; }
344     virtual EGLBoolean swapBuffers() { return EGL_TRUE; }
345
346     uint32_t getRcColorBuffer() { return rcColorBuffer; }
347
348 private:
349     egl_pbuffer_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfType,
350             int32_t w, int32_t h);
351     EGLBoolean init(GLenum format);
352
353     uint32_t rcColorBuffer;
354 };
355
356 egl_pbuffer_surface_t::egl_pbuffer_surface_t(EGLDisplay dpy, EGLConfig config,
357         EGLint surfType, int32_t w, int32_t h)
358 :   egl_surface_t(dpy, config, surfType),
359     rcColorBuffer(0)
360 {
361     setWidth(w);
362     setHeight(h);
363 }
364
365 egl_pbuffer_surface_t::~egl_pbuffer_surface_t()
366 {
367     DEFINE_HOST_CONNECTION;
368     if (rcEnc) {
369         if (rcColorBuffer) rcEnc->rcCloseColorBuffer(rcEnc, rcColorBuffer);
370         if (rcSurface)     rcEnc->rcDestroyWindowSurface(rcEnc, rcSurface);
371     }
372 }
373
374 EGLBoolean egl_pbuffer_surface_t::init(GLenum pixelFormat)
375 {
376     DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
377
378     rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uintptr_t)config,
379             getWidth(), getHeight());
380     if (!rcSurface) {
381         ALOGE("rcCreateWindowSurface returned 0");
382         return EGL_FALSE;
383     }
384
385     rcColorBuffer = rcEnc->rcCreateColorBuffer(rcEnc, getWidth(), getHeight(),
386             pixelFormat);
387     if (!rcColorBuffer) {
388         ALOGE("rcCreateColorBuffer returned 0");
389         return EGL_FALSE;
390     }
391
392     rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, rcColorBuffer);
393
394     return EGL_TRUE;
395 }
396
397 egl_pbuffer_surface_t* egl_pbuffer_surface_t::create(EGLDisplay dpy,
398         EGLConfig config, EGLint surfType, int32_t w, int32_t h,
399         GLenum pixelFormat)
400 {
401     egl_pbuffer_surface_t* pb = new egl_pbuffer_surface_t(dpy, config, surfType,
402             w, h);
403     if (pb && !pb->init(pixelFormat)) {
404         delete pb;
405         pb = NULL;
406     }
407     return pb;
408 }
409
410 static const char *getGLString(int glEnum)
411 {
412     EGLThreadInfo *tInfo = getEGLThreadInfo();
413     if (!tInfo || !tInfo->currentContext) {
414         return NULL;
415     }
416
417     const char** strPtr = NULL;
418
419 #define GL_VENDOR                         0x1F00
420 #define GL_RENDERER                       0x1F01
421 #define GL_VERSION                        0x1F02
422 #define GL_SHADING_LANGUAGE_VERSION       0x8B8C
423 #define GL_EXTENSIONS                     0x1F03
424
425     switch(glEnum) {
426         case GL_VERSION:
427             strPtr = &tInfo->currentContext->versionString;
428             break;
429         case GL_VENDOR:
430             strPtr = &tInfo->currentContext->vendorString;
431             break;
432         case GL_RENDERER:
433             strPtr = &tInfo->currentContext->rendererString;
434             break;
435         case GL_SHADING_LANGUAGE_VERSION:
436             strPtr = &tInfo->currentContext->shaderVersionString;
437             break;
438         case GL_EXTENSIONS:
439             strPtr = &tInfo->currentContext->extensionString;
440             break;
441     }
442
443     if (!strPtr) {
444         return NULL;
445     }
446
447     if (*strPtr != NULL) {
448         //
449         // string is already cached
450         //
451         return *strPtr;
452     }
453
454     //
455     // first query of that string - need to query host
456     //
457     DEFINE_AND_VALIDATE_HOST_CONNECTION(NULL);
458     char *hostStr = NULL;
459     int n = rcEnc->rcGetGLString(rcEnc, glEnum, NULL, 0);
460     if (n < 0) {
461         hostStr = new char[-n+1];
462         n = rcEnc->rcGetGLString(rcEnc, glEnum, hostStr, -n);
463         if (n <= 0) {
464             delete [] hostStr;
465             hostStr = NULL;
466         }
467     }
468
469     //
470     // keep the string in the context and return its value
471     //
472     *strPtr = hostStr;
473     return hostStr;
474 }
475
476 // ----------------------------------------------------------------------------
477
478 // The one and only supported display object.
479 static eglDisplay s_display;
480
481 static EGLClient_eglInterface s_eglIface = {
482     getThreadInfo: getEGLThreadInfo,
483     getGLString: getGLString
484 };
485
486 #define DBG_FUNC DBG("%s\n", __FUNCTION__)
487 EGLDisplay eglGetDisplay(EGLNativeDisplayType display_id)
488 {
489     //
490     // we support only EGL_DEFAULT_DISPLAY.
491     //
492     if (display_id != EGL_DEFAULT_DISPLAY) {
493         return EGL_NO_DISPLAY;
494     }
495
496     return (EGLDisplay)&s_display;
497 }
498
499 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
500 {
501     VALIDATE_DISPLAY(dpy,EGL_FALSE);
502
503     if (!s_display.initialize(&s_eglIface)) {
504         return EGL_FALSE;
505     }
506     if (major!=NULL)
507         *major = s_display.getVersionMajor();
508     if (minor!=NULL)
509         *minor = s_display.getVersionMinor();
510     return EGL_TRUE;
511 }
512
513 EGLBoolean eglTerminate(EGLDisplay dpy)
514 {
515     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
516
517     s_display.terminate();
518     return EGL_TRUE;
519 }
520
521 EGLint eglGetError()
522 {
523     EGLint error = getEGLThreadInfo()->eglError;
524     getEGLThreadInfo()->eglError = EGL_SUCCESS;
525     return error;
526 }
527
528 __eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname)
529 {
530     // search in EGL function table
531     for (int i=0; i<egl_num_funcs; i++) {
532         if (!strcmp(egl_funcs_by_name[i].name, procname)) {
533             return (__eglMustCastToProperFunctionPointerType)egl_funcs_by_name[i].proc;
534         }
535     }
536
537     // look in gles client api's extensions table
538     return (__eglMustCastToProperFunctionPointerType)ClientAPIExts::getProcAddress(procname);
539
540     // Fail - function not found.
541     return NULL;
542 }
543
544 const char* eglQueryString(EGLDisplay dpy, EGLint name)
545 {
546     VALIDATE_DISPLAY_INIT(dpy, NULL);
547
548     return s_display.queryString(name);
549 }
550
551 EGLBoolean eglGetConfigs(EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config)
552 {
553     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
554
555     if(!num_config) {
556         RETURN_ERROR(EGL_FALSE,EGL_BAD_PARAMETER);
557     }
558
559     GLint numConfigs = s_display.getNumConfigs();
560     if (!configs) {
561         *num_config = numConfigs;
562         return EGL_TRUE;
563     }
564
565     EGLint i;
566     for (i = 0 ; i < numConfigs && i < config_size ; i++) {
567         *configs++ = (EGLConfig)(uintptr_t)i;
568     }
569     *num_config = i;
570     return EGL_TRUE;
571 }
572
573 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config)
574 {
575     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
576
577     int attribs_size = 0;
578     if (attrib_list) {
579         const EGLint * attrib_p = attrib_list;
580         while (attrib_p[0] != EGL_NONE) {
581             attribs_size += 2;
582             attrib_p += 2;
583         }
584         attribs_size++; //for the terminating EGL_NONE
585     }
586
587     uint32_t* tempConfigs[config_size];
588     DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
589     *num_config = rcEnc->rcChooseConfig(rcEnc, (EGLint*)attrib_list, attribs_size * sizeof(EGLint), (uint32_t*)tempConfigs, config_size);
590     if (configs!=NULL) {
591         EGLint i=0;
592         for (i=0;i<(*num_config);i++) {
593              *((uintptr_t*)configs+i) = *((uint32_t*)tempConfigs+i);
594         }
595     }
596
597     if (*num_config <= 0)
598         return EGL_FALSE;
599     return EGL_TRUE;
600 }
601
602 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value)
603 {
604     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
605     VALIDATE_CONFIG(config, EGL_FALSE);
606
607     if (s_display.getConfigAttrib(config, attribute, value))
608     {
609         return EGL_TRUE;
610     }
611     else
612     {
613         RETURN_ERROR(EGL_FALSE, EGL_BAD_ATTRIBUTE);
614     }
615 }
616
617 EGLSurface eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list)
618 {
619     (void)attrib_list;
620
621     VALIDATE_DISPLAY_INIT(dpy, NULL);
622     VALIDATE_CONFIG(config, EGL_FALSE);
623     if (win == 0) {
624         setErrorReturn(EGL_BAD_MATCH, EGL_NO_SURFACE);
625     }
626
627     EGLint surfaceType;
628     if (s_display.getConfigAttrib(config, EGL_SURFACE_TYPE, &surfaceType) == EGL_FALSE)    return EGL_FALSE;
629
630     if (!(surfaceType & EGL_WINDOW_BIT)) {
631         setErrorReturn(EGL_BAD_MATCH, EGL_NO_SURFACE);
632     }
633
634     if (static_cast<ANativeWindow*>(win)->common.magic != ANDROID_NATIVE_WINDOW_MAGIC) {
635         setErrorReturn(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
636     }
637
638     egl_surface_t* surface = egl_window_surface_t::create(
639             &s_display, config, EGL_WINDOW_BIT, static_cast<ANativeWindow*>(win));
640     if (!surface) {
641         setErrorReturn(EGL_BAD_ALLOC, EGL_NO_SURFACE);
642     }
643
644     return surface;
645 }
646
647 EGLSurface eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list)
648 {
649     VALIDATE_DISPLAY_INIT(dpy, NULL);
650     VALIDATE_CONFIG(config, EGL_FALSE);
651
652     EGLint surfaceType;
653     if (s_display.getConfigAttrib(config, EGL_SURFACE_TYPE, &surfaceType) == EGL_FALSE)    return EGL_FALSE;
654
655     if (!(surfaceType & EGL_PBUFFER_BIT)) {
656         setErrorReturn(EGL_BAD_MATCH, EGL_NO_SURFACE);
657     }
658
659     int32_t w = 0;
660     int32_t h = 0;
661     EGLint texFormat = EGL_NO_TEXTURE;
662     EGLint texTarget = EGL_NO_TEXTURE;
663     while (attrib_list[0] != EGL_NONE) {
664         switch (attrib_list[0]) {
665             case EGL_WIDTH:
666                 w = attrib_list[1];
667                 break;
668             case EGL_HEIGHT:
669                 h = attrib_list[1];
670                 break;
671             case EGL_TEXTURE_FORMAT:
672                 texFormat = attrib_list[1];
673                 break;
674             case EGL_TEXTURE_TARGET:
675                 texTarget = attrib_list[1];
676                 break;
677             default:
678                 break;
679         };
680         attrib_list+=2;
681     }
682     if (((texFormat == EGL_NO_TEXTURE)&&(texTarget != EGL_NO_TEXTURE)) ||
683         ((texFormat != EGL_NO_TEXTURE)&&(texTarget == EGL_NO_TEXTURE))) {
684         setErrorReturn(EGL_BAD_MATCH, EGL_NO_SURFACE);
685     }
686     // TODO: check EGL_TEXTURE_FORMAT - need to support eglBindTexImage
687
688     GLenum pixelFormat;
689     if (s_display.getConfigGLPixelFormat(config, &pixelFormat) == EGL_FALSE)
690         setErrorReturn(EGL_BAD_MATCH, EGL_NO_SURFACE);
691
692     egl_surface_t* surface = egl_pbuffer_surface_t::create(dpy, config,
693             EGL_PBUFFER_BIT, w, h, pixelFormat);
694     if (!surface) {
695         setErrorReturn(EGL_BAD_ALLOC, EGL_NO_SURFACE);
696     }
697
698     //setup attributes
699     surface->setTextureFormat(texFormat);
700     surface->setTextureTarget(texTarget);
701
702     return surface;
703 }
704
705 EGLSurface eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list)
706 {
707     //XXX: Pixmap not supported. The host cannot render to a pixmap resource
708     //     located on host. In order to support Pixmaps we should either punt
709     //     to s/w rendering -or- let the host render to a buffer that will be
710     //     copied back to guest at some sync point. None of those methods not
711     //     implemented and pixmaps are not used with OpenGL anyway ...
712     (void)dpy;
713     (void)config;
714     (void)pixmap;
715     (void)attrib_list;
716     return EGL_NO_SURFACE;
717 }
718
719 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface eglSurface)
720 {
721     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
722     VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE);
723
724     egl_surface_t* surface(static_cast<egl_surface_t*>(eglSurface));
725     delete surface;
726
727     return EGL_TRUE;
728 }
729
730 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface eglSurface, EGLint attribute, EGLint *value)
731 {
732     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
733     VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE);
734
735     egl_surface_t* surface( static_cast<egl_surface_t*>(eglSurface) );
736     EGLBoolean ret = EGL_TRUE;
737     switch (attribute) {
738         case EGL_CONFIG_ID:
739             ret = s_display.getConfigAttrib(surface->config, EGL_CONFIG_ID, value);
740             break;
741         case EGL_WIDTH:
742             *value = surface->getWidth();
743             break;
744         case EGL_HEIGHT:
745             *value = surface->getHeight();
746             break;
747         case EGL_TEXTURE_FORMAT:
748             *value = surface->getTextureFormat();
749             break;
750         case EGL_TEXTURE_TARGET:
751             *value = surface->getTextureTarget();
752             break;
753         case EGL_SWAP_BEHAVIOR:
754             *value = surface->getSwapBehavior();
755             break;
756         case EGL_LARGEST_PBUFFER:
757             // not modified for a window or pixmap surface
758             // and we ignore it when creating a PBuffer surface (default is EGL_FALSE)
759             if (surface->getSurfaceType() & EGL_PBUFFER_BIT) *value = EGL_FALSE;
760             break;
761         case EGL_MIPMAP_LEVEL:
762             // not modified for a window or pixmap surface
763             // and we ignore it when creating a PBuffer surface (default is 0)
764             if (surface->getSurfaceType() & EGL_PBUFFER_BIT) *value = 0;
765             break;
766         case EGL_MULTISAMPLE_RESOLVE:
767             // ignored when creating the surface, return default
768             *value = EGL_MULTISAMPLE_RESOLVE_DEFAULT;
769             break;
770         //TODO: complete other attributes
771         default:
772             ALOGE("eglQuerySurface %x  EGL_BAD_ATTRIBUTE", attribute);
773             ret = setErrorFunc(EGL_BAD_ATTRIBUTE, EGL_FALSE);
774             break;
775     }
776
777     return ret;
778 }
779
780 EGLBoolean eglBindAPI(EGLenum api)
781 {
782     if (api != EGL_OPENGL_ES_API)
783         setErrorReturn(EGL_BAD_PARAMETER, EGL_FALSE);
784     return EGL_TRUE;
785 }
786
787 EGLenum eglQueryAPI()
788 {
789     return EGL_OPENGL_ES_API;
790 }
791
792 EGLBoolean eglWaitClient()
793 {
794     return eglWaitGL();
795 }
796
797 EGLBoolean eglReleaseThread()
798 {
799     EGLThreadInfo *tInfo = getEGLThreadInfo();
800     if (tInfo && tInfo->currentContext) {
801         return eglMakeCurrent(&s_display, EGL_NO_CONTEXT, EGL_NO_SURFACE, EGL_NO_SURFACE);
802     }
803     return EGL_TRUE;
804 }
805
806 EGLSurface eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list)
807 {
808     //TODO
809     (void)dpy;
810     (void)buftype;
811     (void)buffer;
812     (void)config;
813     (void)attrib_list;
814     ALOGW("%s not implemented", __FUNCTION__);
815     return 0;
816 }
817
818 EGLBoolean eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
819 {
820     //TODO
821     (void)dpy;
822     (void)surface;
823     (void)attribute;
824     (void)value;
825     ALOGW("%s not implemented", __FUNCTION__);
826     return 0;
827 }
828
829 EGLBoolean eglBindTexImage(EGLDisplay dpy, EGLSurface eglSurface, EGLint buffer)
830 {
831     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
832     VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE);
833     if (eglSurface == EGL_NO_SURFACE) {
834         setErrorReturn(EGL_BAD_SURFACE, EGL_FALSE);
835     }
836
837     if (buffer != EGL_BACK_BUFFER) {
838         setErrorReturn(EGL_BAD_PARAMETER, EGL_FALSE);
839     }
840
841     egl_surface_t* surface( static_cast<egl_surface_t*>(eglSurface) );
842
843     if (surface->getTextureFormat() == EGL_NO_TEXTURE) {
844         setErrorReturn(EGL_BAD_MATCH, EGL_FALSE);
845     }
846
847     if (!(surface->getSurfaceType() & EGL_PBUFFER_BIT)) {
848         setErrorReturn(EGL_BAD_SURFACE, EGL_FALSE);
849     }
850
851     //It's now safe to cast to pbuffer surface
852     egl_pbuffer_surface_t* pbSurface = (egl_pbuffer_surface_t*)surface;
853
854     DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
855     rcEnc->rcBindTexture(rcEnc, pbSurface->getRcColorBuffer());
856
857     return GL_TRUE;
858 }
859
860 EGLBoolean eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
861 {
862     //TODO
863     (void)dpy;
864     (void)surface;
865     (void)buffer;
866     ALOGW("%s not implemented", __FUNCTION__);
867     return 0;
868 }
869
870 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
871 {
872     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
873     DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
874
875     EGLContext_t* ctx = getEGLThreadInfo()->currentContext;
876     if (!ctx) {
877         setErrorReturn(EGL_BAD_CONTEXT, EGL_FALSE);
878     }
879     if (!ctx->draw) {
880         setErrorReturn(EGL_BAD_SURFACE, EGL_FALSE);
881     }
882     egl_surface_t* draw(static_cast<egl_surface_t*>(ctx->draw));
883     draw->setSwapInterval(interval);
884
885     rcEnc->rcFBSetSwapInterval(rcEnc, interval); //TODO: implement on the host
886
887     return EGL_TRUE;
888 }
889
890 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list)
891 {
892     VALIDATE_DISPLAY_INIT(dpy, EGL_NO_CONTEXT);
893     VALIDATE_CONFIG(config, EGL_NO_CONTEXT);
894
895     EGLint version = 1; //default
896     while (attrib_list && attrib_list[0] != EGL_NONE) {
897         if (attrib_list[0] == EGL_CONTEXT_CLIENT_VERSION) version = attrib_list[1];
898         attrib_list+=2;
899     }
900
901     // Currently only support GLES1 and 2
902     if (version != 1 && version != 2) {
903         setErrorReturn(EGL_BAD_CONFIG, EGL_NO_CONTEXT);
904     }
905
906     uint32_t rcShareCtx = 0;
907     EGLContext_t * shareCtx = NULL;
908     if (share_context) {
909         shareCtx = static_cast<EGLContext_t*>(share_context);
910         rcShareCtx = shareCtx->rcContext;
911         if (shareCtx->dpy != dpy)
912             setErrorReturn(EGL_BAD_MATCH, EGL_NO_CONTEXT);
913     }
914
915     DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_NO_CONTEXT);
916     uint32_t rcContext = rcEnc->rcCreateContext(rcEnc, (uintptr_t)config, rcShareCtx, version);
917     if (!rcContext) {
918         ALOGE("rcCreateContext returned 0");
919         setErrorReturn(EGL_BAD_ALLOC, EGL_NO_CONTEXT);
920     }
921
922     EGLContext_t * context = new EGLContext_t(dpy, config, shareCtx);
923     if (!context)
924         setErrorReturn(EGL_BAD_ALLOC, EGL_NO_CONTEXT);
925
926     context->version = version;
927     context->rcContext = rcContext;
928
929
930     return context;
931 }
932
933 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
934 {
935     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
936     VALIDATE_CONTEXT_RETURN(ctx, EGL_FALSE);
937
938     EGLContext_t * context = static_cast<EGLContext_t*>(ctx);
939
940     if (!context) return EGL_TRUE;
941
942     if (getEGLThreadInfo()->currentContext == context) {
943         getEGLThreadInfo()->currentContext->deletePending = 1;
944         return EGL_TRUE;
945     }
946
947     if (context->rcContext) {
948         DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
949         rcEnc->rcDestroyContext(rcEnc, context->rcContext);
950         context->rcContext = 0;
951     }
952
953     delete context;
954     return EGL_TRUE;
955 }
956
957 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx)
958 {
959     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
960     VALIDATE_SURFACE_RETURN(draw, EGL_FALSE);
961     VALIDATE_SURFACE_RETURN(read, EGL_FALSE);
962
963     if ((read == EGL_NO_SURFACE && draw == EGL_NO_SURFACE) && (ctx != EGL_NO_CONTEXT))
964         setErrorReturn(EGL_BAD_MATCH, EGL_FALSE);
965     if ((read != EGL_NO_SURFACE || draw != EGL_NO_SURFACE) && (ctx == EGL_NO_CONTEXT))
966         setErrorReturn(EGL_BAD_MATCH, EGL_FALSE);
967
968     EGLContext_t * context = static_cast<EGLContext_t*>(ctx);
969     uint32_t ctxHandle = (context) ? context->rcContext : 0;
970     egl_surface_t * drawSurf = static_cast<egl_surface_t *>(draw);
971     uint32_t drawHandle = (drawSurf) ? drawSurf->getRcSurface() : 0;
972     egl_surface_t * readSurf = static_cast<egl_surface_t *>(read);
973     uint32_t readHandle = (readSurf) ? readSurf->getRcSurface() : 0;
974
975     //
976     // Nothing to do if no binding change has made
977     //
978     EGLThreadInfo *tInfo = getEGLThreadInfo();
979
980     if (tInfo->currentContext == context &&
981         (context == NULL ||
982         (context && context->draw == draw && context->read == read))) {
983         return EGL_TRUE;
984     }
985
986     if (tInfo->currentContext && tInfo->currentContext->deletePending) {
987         if (tInfo->currentContext != context) {
988             EGLContext_t * contextToDelete = tInfo->currentContext;
989             tInfo->currentContext = 0;
990             eglDestroyContext(dpy, contextToDelete);
991         }
992     }
993
994     if (context && (context->flags & EGLContext_t::IS_CURRENT) && (context != tInfo->currentContext)) {
995         //context is current to another thread
996         setErrorReturn(EGL_BAD_ACCESS, EGL_FALSE);
997     }
998
999     DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
1000     if (rcEnc->rcMakeCurrent(rcEnc, ctxHandle, drawHandle, readHandle) == EGL_FALSE) {
1001         ALOGE("rcMakeCurrent returned EGL_FALSE");
1002         setErrorReturn(EGL_BAD_CONTEXT, EGL_FALSE);
1003     }
1004
1005     //Now make the local bind
1006     if (context) {
1007         context->draw = draw;
1008         context->read = read;
1009         context->flags |= EGLContext_t::IS_CURRENT;
1010         //set the client state
1011         if (context->version == 2) {
1012             hostCon->gl2Encoder()->setClientState(context->getClientState());
1013             hostCon->gl2Encoder()->setSharedGroup(context->getSharedGroup());
1014         }
1015         else {
1016             hostCon->glEncoder()->setClientState(context->getClientState());
1017             hostCon->glEncoder()->setSharedGroup(context->getSharedGroup());
1018         }
1019     }
1020     else if (tInfo->currentContext) {
1021         //release ClientState & SharedGroup
1022         if (tInfo->currentContext->version == 2) {
1023             hostCon->gl2Encoder()->setClientState(NULL);
1024             hostCon->gl2Encoder()->setSharedGroup(GLSharedGroupPtr(NULL));
1025         }
1026         else {
1027             hostCon->glEncoder()->setClientState(NULL);
1028             hostCon->glEncoder()->setSharedGroup(GLSharedGroupPtr(NULL));
1029         }
1030
1031     }
1032
1033     if (tInfo->currentContext)
1034         tInfo->currentContext->flags &= ~EGLContext_t::IS_CURRENT;
1035
1036     //Now make current
1037     tInfo->currentContext = context;
1038
1039     //Check maybe we need to init the encoder, if it's first eglMakeCurrent
1040     if (tInfo->currentContext) {
1041         if (tInfo->currentContext->version == 2) {
1042             if (!hostCon->gl2Encoder()->isInitialized()) {
1043                 s_display.gles2_iface()->init();
1044                 hostCon->gl2Encoder()->setInitialized();
1045                 ClientAPIExts::initClientFuncs(s_display.gles2_iface(), 1);
1046             }
1047         }
1048         else {
1049             if (!hostCon->glEncoder()->isInitialized()) {
1050                 s_display.gles_iface()->init();
1051                 hostCon->glEncoder()->setInitialized();
1052                 ClientAPIExts::initClientFuncs(s_display.gles_iface(), 0);
1053             }
1054         }
1055     }
1056
1057     return EGL_TRUE;
1058 }
1059
1060 EGLContext eglGetCurrentContext()
1061 {
1062     return getEGLThreadInfo()->currentContext;
1063 }
1064
1065 EGLSurface eglGetCurrentSurface(EGLint readdraw)
1066 {
1067     EGLContext_t * context = getEGLThreadInfo()->currentContext;
1068     if (!context)
1069         return EGL_NO_SURFACE; //not an error
1070
1071     switch (readdraw) {
1072         case EGL_READ:
1073             return context->read;
1074         case EGL_DRAW:
1075             return context->draw;
1076         default:
1077             setErrorReturn(EGL_BAD_PARAMETER, EGL_NO_SURFACE);
1078     }
1079 }
1080
1081 EGLDisplay eglGetCurrentDisplay()
1082 {
1083     EGLContext_t * context = getEGLThreadInfo()->currentContext;
1084     if (!context)
1085         return EGL_NO_DISPLAY; //not an error
1086
1087     return context->dpy;
1088 }
1089
1090 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value)
1091 {
1092     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
1093     VALIDATE_CONTEXT_RETURN(ctx, EGL_FALSE);
1094
1095     EGLContext_t * context = static_cast<EGLContext_t*>(ctx);
1096
1097     EGLBoolean ret = EGL_TRUE;
1098     switch (attribute) {
1099         case EGL_CONFIG_ID:
1100             ret = s_display.getConfigAttrib(context->config, EGL_CONFIG_ID, value);
1101             break;
1102         case EGL_CONTEXT_CLIENT_TYPE:
1103             *value = EGL_OPENGL_ES_API;
1104             break;
1105         case EGL_CONTEXT_CLIENT_VERSION:
1106             *value = context->version;
1107             break;
1108         case EGL_RENDER_BUFFER:
1109             if (!context->draw)
1110                 *value = EGL_NONE;
1111             else
1112                 *value = EGL_BACK_BUFFER; //single buffer not supported
1113             break;
1114         default:
1115             ALOGE("eglQueryContext %x  EGL_BAD_ATTRIBUTE", attribute);
1116             setErrorReturn(EGL_BAD_ATTRIBUTE, EGL_FALSE);
1117             break;
1118     }
1119
1120     return ret;
1121 }
1122
1123 EGLBoolean eglWaitGL()
1124 {
1125     EGLThreadInfo *tInfo = getEGLThreadInfo();
1126     if (!tInfo || !tInfo->currentContext) {
1127         return EGL_FALSE;
1128     }
1129
1130     if (tInfo->currentContext->version == 2) {
1131         s_display.gles2_iface()->finish();
1132     }
1133     else {
1134         s_display.gles_iface()->finish();
1135     }
1136
1137     return EGL_TRUE;
1138 }
1139
1140 EGLBoolean eglWaitNative(EGLint engine)
1141 {
1142     (void)engine;
1143     return EGL_TRUE;
1144 }
1145
1146 EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface eglSurface)
1147 {
1148     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
1149     if (eglSurface == EGL_NO_SURFACE)
1150         setErrorReturn(EGL_BAD_SURFACE, EGL_FALSE);
1151
1152     DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
1153
1154     egl_surface_t* d = static_cast<egl_surface_t*>(eglSurface);
1155     if (d->dpy != dpy)
1156         setErrorReturn(EGL_BAD_DISPLAY, EGL_FALSE);
1157
1158     // post the surface
1159     d->swapBuffers();
1160
1161     hostCon->flush();
1162     return EGL_TRUE;
1163 }
1164
1165 EGLBoolean eglCopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target)
1166 {
1167     //TODO :later
1168     (void)dpy;
1169     (void)surface;
1170     (void)target;
1171     return 0;
1172 }
1173
1174 EGLBoolean eglLockSurfaceKHR(EGLDisplay display, EGLSurface surface, const EGLint *attrib_list)
1175 {
1176     //TODO later
1177     (void)display;
1178     (void)surface;
1179     (void)attrib_list;
1180     return 0;
1181 }
1182
1183 EGLBoolean eglUnlockSurfaceKHR(EGLDisplay display, EGLSurface surface)
1184 {
1185     //TODO later
1186     (void)display;
1187     (void)surface;
1188     return 0;
1189 }
1190
1191 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list)
1192 {
1193     (void)attrib_list;
1194
1195     VALIDATE_DISPLAY_INIT(dpy, EGL_NO_IMAGE_KHR);
1196
1197     if (target == EGL_NATIVE_BUFFER_ANDROID) {
1198         if (ctx != EGL_NO_CONTEXT) {
1199             setErrorReturn(EGL_BAD_CONTEXT, EGL_NO_IMAGE_KHR);
1200         }
1201
1202         android_native_buffer_t* native_buffer = (android_native_buffer_t*)buffer;
1203
1204         if (native_buffer->common.magic != ANDROID_NATIVE_BUFFER_MAGIC)
1205             setErrorReturn(EGL_BAD_PARAMETER, EGL_NO_IMAGE_KHR);
1206
1207         if (native_buffer->common.version != sizeof(android_native_buffer_t))
1208             setErrorReturn(EGL_BAD_PARAMETER, EGL_NO_IMAGE_KHR);
1209
1210         cb_handle_t *cb = (cb_handle_t *)(native_buffer->handle);
1211
1212         switch (cb->format) {
1213             case HAL_PIXEL_FORMAT_RGBA_8888:
1214             case HAL_PIXEL_FORMAT_RGBX_8888:
1215             case HAL_PIXEL_FORMAT_RGB_888:
1216             case HAL_PIXEL_FORMAT_RGB_565:
1217             case HAL_PIXEL_FORMAT_BGRA_8888:
1218                 break;
1219             default:
1220                 setErrorReturn(EGL_BAD_PARAMETER, EGL_NO_IMAGE_KHR);
1221         }
1222
1223         native_buffer->common.incRef(&native_buffer->common);
1224
1225         EGLImage_t *image = new EGLImage_t();
1226         image->dpy = dpy;
1227         image->target = target;
1228         image->native_buffer = native_buffer;
1229
1230         return (EGLImageKHR)image;
1231     }
1232     else if (target == EGL_GL_TEXTURE_2D_KHR) {
1233         VALIDATE_CONTEXT_RETURN(ctx, EGL_NO_IMAGE_KHR);
1234
1235         EGLContext_t *context = static_cast<EGLContext_t*>(ctx);
1236         DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_NO_IMAGE_KHR);
1237
1238         uint32_t ctxHandle = (context) ? context->rcContext : 0;
1239         GLuint texture = (GLuint)reinterpret_cast<uintptr_t>(buffer);
1240         uint32_t img = rcEnc->rcCreateClientImage(rcEnc, ctxHandle, target, texture);
1241         EGLImage_t *image = new EGLImage_t();
1242         image->dpy = dpy;
1243         image->target = target;
1244         image->host_egl_image = img;
1245
1246         return (EGLImageKHR)image;
1247     }
1248     
1249     setErrorReturn(EGL_BAD_PARAMETER, EGL_NO_IMAGE_KHR);
1250 }
1251
1252 EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img)
1253 {
1254     VALIDATE_DISPLAY_INIT(dpy, EGL_FALSE);
1255     EGLImage_t *image = (EGLImage_t*)img;
1256
1257     if (!image || image->dpy != dpy) {
1258         RETURN_ERROR(EGL_FALSE, EGL_BAD_PARAMETER);
1259     }
1260
1261     if (image->target == EGL_NATIVE_BUFFER_ANDROID) {
1262         android_native_buffer_t* native_buffer = image->native_buffer;
1263
1264         if (native_buffer->common.magic != ANDROID_NATIVE_BUFFER_MAGIC)
1265             setErrorReturn(EGL_BAD_PARAMETER, EGL_FALSE);
1266
1267         if (native_buffer->common.version != sizeof(android_native_buffer_t))
1268             setErrorReturn(EGL_BAD_PARAMETER, EGL_FALSE);
1269
1270         native_buffer->common.decRef(&native_buffer->common);
1271         delete image;
1272
1273         return EGL_TRUE;
1274     }
1275     else if (image->target == EGL_GL_TEXTURE_2D_KHR) {
1276         uint32_t host_egl_image = image->host_egl_image;
1277         delete image;
1278         DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
1279         return rcEnc->rcDestroyClientImage(rcEnc, host_egl_image);
1280     }
1281
1282     setErrorReturn(EGL_BAD_PARAMETER, EGL_FALSE);
1283 }
1284
1285 #define FENCE_SYNC_HANDLE (EGLSyncKHR)0xFE4CE
1286
1287 EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type,
1288         const EGLint *attrib_list)
1289 {
1290     // TODO: This implementation could be faster. We should require the host EGL
1291     // to support KHR_fence_sync, or at least pipe the fence command to the host
1292     // and wait for it (probably involving a glFinish on the host) in
1293     // eglClientWaitSyncKHR.
1294
1295     VALIDATE_DISPLAY(dpy, EGL_NO_SYNC_KHR);
1296
1297     if (type != EGL_SYNC_FENCE_KHR ||
1298             (attrib_list != NULL && attrib_list[0] != EGL_NONE)) {
1299         setErrorReturn(EGL_BAD_ATTRIBUTE, EGL_NO_SYNC_KHR);
1300     }
1301
1302     EGLThreadInfo *tInfo = getEGLThreadInfo();
1303     if (!tInfo || !tInfo->currentContext) {
1304         setErrorReturn(EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1305     }
1306
1307     if (tInfo->currentContext->version == 2) {
1308         s_display.gles2_iface()->finish();
1309     } else {
1310         s_display.gles_iface()->finish();
1311     }
1312
1313     return FENCE_SYNC_HANDLE;
1314 }
1315
1316 EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync)
1317 {
1318     (void)dpy;
1319
1320     if (sync != FENCE_SYNC_HANDLE) {
1321         setErrorReturn(EGL_BAD_PARAMETER, EGL_FALSE);
1322     }
1323
1324     return EGL_TRUE;
1325 }
1326
1327 EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags,
1328         EGLTimeKHR timeout)
1329 {
1330     (void)dpy;
1331     (void)flags;
1332     (void)timeout;
1333
1334     if (sync != FENCE_SYNC_HANDLE) {
1335         setErrorReturn(EGL_BAD_PARAMETER, EGL_FALSE);
1336     }
1337
1338     return EGL_CONDITION_SATISFIED_KHR;
1339 }
1340
1341 EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync,
1342         EGLint attribute, EGLint *value)
1343 {
1344     (void)dpy;
1345
1346     if (sync != FENCE_SYNC_HANDLE) {
1347         setErrorReturn(EGL_BAD_PARAMETER, EGL_FALSE);
1348     }
1349
1350     switch (attribute) {
1351     case EGL_SYNC_TYPE_KHR:
1352         *value = EGL_SYNC_FENCE_KHR;
1353         return EGL_TRUE;
1354     case EGL_SYNC_STATUS_KHR:
1355         *value = EGL_SIGNALED_KHR;
1356         return EGL_TRUE;
1357     case EGL_SYNC_CONDITION_KHR:
1358         *value = EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR;
1359         return EGL_TRUE;
1360     default:
1361         setErrorReturn(EGL_BAD_ATTRIBUTE, EGL_FALSE);
1362     }
1363 }