From: raster Date: Fri, 11 Nov 2011 07:43:38 +0000 (+0000) Subject: oops - typo in dyn image fix. fix! X-Git-Tag: 2.0_alpha~170^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8053f526463aef305dd3c5aeb59257cce683248;p=framework%2Fuifw%2Fevas.git oops - typo in dyn image fix. fix! git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@65052 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/modules/engines/gl_common/evas_gl_texture.c b/src/modules/engines/gl_common/evas_gl_texture.c index 40ef3cf..3ce33cc 100644 --- a/src/modules/engines/gl_common/evas_gl_texture.c +++ b/src/modules/engines/gl_common/evas_gl_texture.c @@ -647,8 +647,8 @@ evas_gl_texture_pool_empty(Evas_GL_Texture_Pool *pt) #if defined (GLES_VARIETY_S3C6410) || defined (GLES_VARIETY_SGX) if (pt->dyn.img) { - if (im->tex->pt->dyn.checked_out > 0) - glsym_eglUnmapImageSEC(pt->gc->egldisp, pt->dyn.img); + if (pt->dyn.checked_out > 0) + secsym_eglUnmapImageSEC(pt->gc->egldisp, pt->dyn.img); secsym_eglDestroyImage(pt->gc->egldisp, pt->dyn.img); pt->dyn.img = NULL; pt->dyn.data = NULL;