From: Iago Toral Quiroga Date: Fri, 13 Jun 2014 09:13:24 +0000 (+0200) Subject: i965: Enable vertex streams up to MAX_VERTEX_STREAMS. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b3492fa3ff1738fffbc8d05cf39b6e10da3dc39;p=mesa.git i965: Enable vertex streams up to MAX_VERTEX_STREAMS. Reviewed-by: Ian Romanick --- diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 4e97159a98a..eff2744a5d2 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -507,6 +507,10 @@ brw_initialize_context_constants(struct brw_context *brw) ctx->Const.ViewportBounds.Min = -(float)ctx->Const.MaxViewportWidth; ctx->Const.ViewportBounds.Max = ctx->Const.MaxViewportWidth; } + + /* ARB_gpu_shader5 */ + if (brw->gen >= 7) + ctx->Const.MaxVertexStreams = MIN2(4, MAX_VERTEX_STREAMS); } /**