evas/gl: abort is so cruel. print error and let it don't die there.

This commit is contained in:
ChunEon Park 2014-06-23 09:50:55 +09:00
parent 60895e1a14
commit 65cebb614c
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ _evas_gl_texture_search_format(Eina_Bool alpha, Eina_Bool bgra, Evas_Colorspace
matching_format[i].cspace == cspace)
return i;
abort();
ERR("Texture doesn't support the image format! colorspace(%s) alpha(%d) bgra(%d)", cspace, alpha, bgra);
return 0;
}