From: Jean-Philippe Andre Date: Wed, 14 Oct 2015 08:43:36 +0000 (+0900) Subject: Evas GL: Improve ERR log (direct rendering failed) X-Git-Tag: v1.16.0-beta2~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=045f774c2772bf7fc0b5380051e35c671bdef6be;p=platform%2Fupstream%2Fefl.git Evas GL: Improve ERR log (direct rendering failed) --- diff --git a/src/modules/evas/engines/gl_common/evas_gl_core.c b/src/modules/evas/engines/gl_common/evas_gl_core.c index 46eca42..f59d34e 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_core.c +++ b/src/modules/evas/engines/gl_common/evas_gl_core.c @@ -1329,8 +1329,10 @@ try_again: } else { - ERR("Win cfg can't support Evas GL DR win (depth %d, stencil %d, msaa %d)", - native_win_depth, native_win_stencil, native_win_msaa); + ERR("Win cfg can't support Evas GL DR, win: [depth %d, stencil %d, msaa %d] " + "want: [depth %d, stencil %d, msaa %d]", + native_win_depth, native_win_stencil, native_win_msaa, + depth_size, stencil_bit, msaa_samples); support_win_cfg = EINA_FALSE; }