Module: Mesa Branch: master Commit: 35bfe2099564b6655563d920a21d13392b78c43e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=35bfe2099564b6655563d920a21d13392b78c43e
Author: Matt Turner <[email protected]> Date: Mon Feb 26 14:25:17 2018 -0800 i965: Warn about preliminary support for Gen11 Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/drivers/dri/i965/brw_context.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index b9c3fa27bf..8ab9063d21 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -1011,6 +1011,13 @@ brwCreateContext(gl_api api, return false; } + if (devinfo->gen == 11) { + fprintf(stderr, + "WARNING: i965 does not fully support Gen11 yet.\n" + "Instability or lower performance might occur.\n"); + + } + brw_init_state(brw); intelInitExtensions(ctx); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
