i965: Enable vertex streams up to MAX_VERTEX_STREAMS.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_context.c
index 4e97159a98ac7f8f05df4736265b358c6c962823..eff2744a5d24ce58816088de59184ebd24339e68 100644 (file)
@@ -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);
 }
 
 /**