Evas GL: Improve ERR log (direct rendering failed)

This commit is contained in:
Jean-Philippe Andre 2015-10-14 17:43:36 +09:00
parent 93298d6dc2
commit 045f774c27
1 changed files with 4 additions and 2 deletions

View File

@ -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;
}