Fix emulator launch crash on MAC 23/205523/3
authorKarthik Bhat <kv.bhat@samsung.com>
Tue, 7 May 2019 06:52:01 +0000 (12:22 +0530)
committerKarthik Bhat <kv.bhat@samsung.com>
Tue, 7 May 2019 08:30:34 +0000 (14:00 +0530)
Change-Id: If02e8700c012e0e7944e8acac3653d1c4feb0e9d
Signed-off-by: Karthik Bhat <kv.bhat@samsung.com>
hw/yagl/yagl_drivers/egl_cgl/yagl_egl_cgl.c
package/changelog
package/pkginfo.manifest

index 0f398ba..90cd0bc 100644 (file)
@@ -387,14 +387,24 @@ static EGLSurface yagl_egl_cgl_pbuffer_surface_create(struct yagl_egl_driver *dr
                         width,
                         height);
 
-    error = CGLCreatePBuffer(width, height, GL_TEXTURE_2D, GL_RGBA,
-                             0, &pbuffer);
-
-    if (error) {
-        YAGL_LOG_ERROR("CGLCreatePBuffer failed: %s", CGLErrorString(error));
-        pbuffer = NULL;
+    // TODO: Migrate to Metal Framework
+    // CGLCreatePBuffer is deprecated on MAC.
+    // Below hack is to fix Emulator launch issue on MAC.
+    // The surface returned by CGLCreatePBuffer is not used in case of opengl 3.2
+    // Hence return dummy surface in case of opengl 3.2 instead of returning null and exiting.
+    if (driver->gl_version > yagl_gl_2) {
+       YAGL_LOG_INFO("Creating Dummy EGLSurface\n");
+       pbuffer = (EGLSurface)1;
     }
+    else {
+        error = CGLCreatePBuffer(width, height, GL_TEXTURE_2D, GL_RGBA,
+                                0, &pbuffer);
 
+        if (error) {
+            YAGL_LOG_ERROR("CGLCreatePBuffer failed: %s", CGLErrorString(error));
+            pbuffer = NULL;
+        }
+    }
     YAGL_LOG_FUNC_EXIT("%p", pbuffer);
 
     return pbuffer;
@@ -410,11 +420,12 @@ static void yagl_egl_cgl_pbuffer_surface_destroy(struct yagl_egl_driver *driver,
                         "dpy = %p, sfc = %p",
                         dpy,
                         sfc);
+    if (!(driver->gl_version > yagl_gl_2)) {
+        error = CGLDestroyPBuffer((CGLPBufferObj)sfc);
 
-    error = CGLDestroyPBuffer((CGLPBufferObj)sfc);
-
-    if (error) {
-        YAGL_LOG_ERROR("CGLDestroyPBuffer failed: %s", CGLErrorString(error));
+        if (error) {
+            YAGL_LOG_ERROR("CGLDestroyPBuffer failed: %s", CGLErrorString(error));
+        }
     }
 
     YAGL_LOG_FUNC_EXIT(NULL);
@@ -445,7 +456,7 @@ static EGLContext yagl_egl_cgl_context_create(struct yagl_egl_driver *driver,
         share_ctx = NULL;
     }
 
-    if ((egl_cgl->base.gl_version > yagl_gl_2) && (version != 1)) {
+    if (egl_cgl->base.gl_version > yagl_gl_2) {
         ctx->is_3_2_core = true;
     } else {
         ctx->is_3_2_core = false;
@@ -504,7 +515,7 @@ static bool yagl_egl_cgl_make_current(struct yagl_egl_driver *driver,
                         draw,
                         read,
                         ctx);
-
+    // Call CGLSetPBuffer only in case a valid CGLCreatePBuffer is created.
     if (cgl_ctx && !cgl_ctx->is_3_2_core) {
         if (read_pbuffer) {
             error = CGLSetPBuffer(cgl_ctx->base, read_pbuffer, 0, 0, 0);
index a8ce188..26b82c8 100644 (file)
@@ -1,3 +1,6 @@
+* 2.8.0.24
+- YAGL: Fix emulator launch fail on MAC
+== Karthik Bhat <kv.bhat@samsung.com> 2019-05-07
 * 2.8.0.23
 - Open source Vulnerability fixed
 == Rahul Dadhich <r.dadhich@samsung.com> 2018-10-05
index a498bca..d644b0f 100644 (file)
@@ -1,4 +1,4 @@
-Version: 2.8.0.23
+Version: 2.8.0.24
 Maintainer: SeokYeon Hwang <syeon.hwang@samsung.com>
 Source: emulator