fix for dyn image size change.

SVN revision: 53180
This commit is contained in:
Carsten Haitzler 2010-10-08 05:11:32 +00:00
parent 7ac13f931f
commit 6bbe56fefc
1 changed files with 2 additions and 0 deletions

View File

@ -1405,6 +1405,8 @@ eng_image_size_set(void *data, void *image, int w, int h)
{
evas_gl_common_texture_free(im->tex);
im->tex = NULL;
im->w = w;
im->h = h;
im->tex = evas_gl_common_texture_dynamic_new(im->gc, im);
return image;
}