From 5b3492fa3ff1738fffbc8d05cf39b6e10da3dc39 Mon Sep 17 00:00:00 2001 From: Iago Toral Quiroga Date: Fri, 13 Jun 2014 11:13:24 +0200 Subject: [PATCH] i965: Enable vertex streams up to MAX_VERTEX_STREAMS. Reviewed-by: Ian Romanick --- src/mesa/drivers/dri/i965/brw_context.c | 4 ++++ 1 file changed, 4 insertions(+) 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); } /** -- 2.30.2