From: Sangjin Kim Date: Thu, 11 Apr 2013 10:55:34 +0000 (+0900) Subject: Fix pbuffer bug on MAC. X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~1016 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2f8d5e1c5453627176e1bfcd7fb81c76e6c2c829;p=sdk%2Femulator%2Fqemu.git Fix pbuffer bug on MAC. Change-Id: I8b0fb616409e965f5b4c786bf7be7ebab5817534 Signed-off-by: Sangjin Kim --- diff --git a/package/changelog b/package/changelog index 98eeb81c11..d932dda164 100644 --- a/package/changelog +++ b/package/changelog @@ -1,3 +1,6 @@ +* 1.5.26 +- Add glFinish() after AGL function aglTexImagePBuffer() cause of pbuffer bug on MAC os. +== Sangjin Kim 2013-04-11 * 1.5.25 - Do not exit if log directory is deleted on runtime. == Seokyeon Hwang 2013-04-10 diff --git a/package/pkginfo.manifest b/package/pkginfo.manifest index d4c35672a4..961b4fc3aa 100644 --- a/package/pkginfo.manifest +++ b/package/pkginfo.manifest @@ -1,4 +1,4 @@ -Version: 1.5.25 +Version: 1.5.26 Maintainer: Yeong-Kyoon Lee Source: emulator diff --git a/tizen/src/hw/gloffscreen_agl.c b/tizen/src/hw/gloffscreen_agl.c index c950c281d3..d71f9f6f6a 100644 --- a/tizen/src/hw/gloffscreen_agl.c +++ b/tizen/src/hw/gloffscreen_agl.c @@ -350,6 +350,7 @@ void glo_surface_as_texture(GloContext *ctxt, GloSurface *surface) if (aglTexImagePBuffer(ctxt->context, surface->pbuffer, GL_BACK) == GL_FALSE) fprintf(stderr, "aglTexImagePBuffer failed: %s", aglErrorString(aglGetError())); + glFinish(); #endif }