From: Gwanglim Lee Date: Thu, 7 Oct 2010 13:05:08 +0000 (+0900) Subject: [evas_engine.c] fix evas image resize bug for the dynamic texture X-Git-Tag: 2.0_alpha~471 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a5a457eb656c653b0b3c604f8fa5e43a87eb4d1a;p=framework%2Fuifw%2Fevas.git [evas_engine.c] fix evas image resize bug for the dynamic texture --- diff --git a/src/modules/engines/gl_x11/evas_engine.c b/src/modules/engines/gl_x11/evas_engine.c index f9cf45f..5f131f9 100755 --- a/src/modules/engines/gl_x11/evas_engine.c +++ b/src/modules/engines/gl_x11/evas_engine.c @@ -1434,6 +1434,8 @@ eng_image_size_set(void *data, void *image, int w, int h) if ((im->tex) && (im->tex->pt->dyn.img)) { evas_gl_common_texture_free(im->tex); + im->w = w; + im->h = h; im->tex = NULL; im->tex = evas_gl_common_texture_dynamic_new(im->gc, im); return image;