diff options
author | Sangjin Kim <sangjin3.kim@samsung.com> | 2012-09-04 15:43:44 +0900 |
---|---|---|
committer | Sangjin Kim <sangjin3.kim@samsung.com> | 2012-09-04 15:43:44 +0900 |
commit | bffcebb7116b9468aadbc09cea3a6c4f579ec217 (patch) | |
tree | 7e8ecf4274f869ea0653f9f1592580ee87cd1891 | |
parent | 7c53dc36e0f39adafe23370e217d09d3c0b9712d (diff) | |
download | simulator-opengl-bffcebb7116b9468aadbc09cea3a6c4f579ec217.tar.gz simulator-opengl-bffcebb7116b9468aadbc09cea3a6c4f579ec217.tar.bz2 simulator-opengl-bffcebb7116b9468aadbc09cea3a6c4f579ec217.zip |
[Title] eglBindAPI bug fix.
[Type] bug fix
[Module] opengl
[Priority]
[CQ#]
[Redmine#]
[Problem] Return value of eglBindAPI is not correct.
[Cause] Unhandled exception path is exist.
[Solution] Inset explicit return path.
[TestCase]
-rw-r--r-- | debian/changelog | 8 | ||||
-rwxr-xr-x | egl_1_4/37BindAPI.c | 2 | ||||
-rwxr-xr-x | packaging/simulator-opengl.spec | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 19282ea..11ae825 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +simulator-opengl (0.1.32) unstable; urgency=low + + * eglBindAPI bug fix. + * Git: 112.106.1.251:sdk/simulator-opengl + * Tag: simulator-opengl_0.1.32 + + -- Sangjin Kim <sangjin3.kim@samsung.com> Tue, 04 Sep 2012 15:41:48 +0900 + simulator-opengl (0.1.31) unstable; urgency=low * pixmap, EGLImageKHR, glEGLImageTargetTexture2DOES extension modified. diff --git a/egl_1_4/37BindAPI.c b/egl_1_4/37BindAPI.c index e2db5a2..0fede7a 100755 --- a/egl_1_4/37BindAPI.c +++ b/egl_1_4/37BindAPI.c @@ -39,7 +39,7 @@ EGLBoolean EGLAPIENTRY eglBindAPI(EGLenum api) { case EGL_OPENGL_ES_API: case EGL_OPENVG_API: EGLINTER(global).currentAPI = api; - break; + return EGL_TRUE; #else case EGL_OPENGL_ES_API: EGLINTER(global).currentAPI = api; diff --git a/packaging/simulator-opengl.spec b/packaging/simulator-opengl.spec index 498d97a..2b88302 100755 --- a/packaging/simulator-opengl.spec +++ b/packaging/simulator-opengl.spec @@ -1,7 +1,7 @@ #sbs-git:slp/sdk/simulator-opengl Name: simulator-opengl Summary: opengl-es acceleration module for emulator -Version: 0.1.31 +Version: 0.1.32 Release: 1 Group: TO_BE/FILLED_IN License: TO_BE/FILLED_IN |