From 90c51ccf82e04d06aa63aea49121165b7f2e8991 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Tue, 8 Nov 2016 10:10:34 -0800 Subject: [PATCH] i965: Always set MaxViewports and related limits Since 9d6ca7c3, there should be no performance hit for having MaxViewports > 1. Always set this context state. This eliminates the need to update this conditional as we add support for OES_viewport_array on older GPUs. Signed-off-by: Ian Romanick Reviewed-by: Kenneth Graunke --- src/mesa/drivers/dri/i965/brw_context.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 0b9d2a0..f939463 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -795,8 +795,7 @@ brw_initialize_context_constants(struct brw_context *brw) } /* ARB_viewport_array, OES_viewport_array */ - if ((brw->gen >= 6 && ctx->API == API_OPENGL_CORE) || - (brw->gen >= 8 && ctx->API == API_OPENGLES2)) { + if (brw->gen >= 6) { ctx->Const.MaxViewports = GEN6_NUM_VIEWPORTS; ctx->Const.ViewportSubpixelBits = 0; -- 2.7.4