[Mesa-dev] [PATCH v3] i965: Enable vertex streams up to MAX_VERTEX_STREAMS.
Iago Toral Quiroga
itoral at igalia.com
Thu Jun 19 05:32:21 PDT 2014
---
I guess this was an implicit reviewed-by with this change, but anyway... :)
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 cfb0be0..e168b6d 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);
}
/**
--
1.9.1
More information about the mesa-dev
mailing list