From 65cebb614cebfbe7690c278c0eb522ffc92c0c3f Mon Sep 17 00:00:00 2001 From: ChunEon Park Date: Mon, 23 Jun 2014 09:50:55 +0900 Subject: [PATCH] evas/gl: abort is so cruel. print error and let it don't die there. --- src/modules/evas/engines/gl_common/evas_gl_texture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/evas/engines/gl_common/evas_gl_texture.c b/src/modules/evas/engines/gl_common/evas_gl_texture.c index 87c1346ae3..eef12c88a7 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_texture.c +++ b/src/modules/evas/engines/gl_common/evas_gl_texture.c @@ -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; }