aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_context.c
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2018-02-26 14:25:17 -0800
committerMatt Turner <[email protected]>2018-02-28 11:14:03 -0800
commit35bfe2099564b6655563d920a21d13392b78c43e (patch)
treead3eb864eb8b1b302f38c541ea8ca4a7a9708123 /src/mesa/drivers/dri/i965/brw_context.c
parent5ac804bd9accac58a176ae102dd0de52aaec6eb2 (diff)
i965: Warn about preliminary support for Gen11
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_context.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c
index b9c3fa27bf0..8ab9063d214 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);