[evas_engine.c] fix evas image resize bug for the dynamic texture
authorGwanglim Lee <gl77.lee@samsung.com>
Thu, 7 Oct 2010 13:05:08 +0000 (22:05 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Thu, 7 Oct 2010 13:05:08 +0000 (22:05 +0900)
src/modules/engines/gl_x11/evas_engine.c

index f9cf45f..5f131f9 100755 (executable)
@@ -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;