[Mesa-dev] [PATCH v3] i965: Enable vertex streams up to MAX_VERTEX_STREAMS.
Ian Romanick
idr at freedesktop.org
Thu Jun 19 15:19:44 PDT 2014
Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>
On 06/19/2014 05:32 AM, Iago Toral Quiroga wrote:
> ---
>
> 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);
> }
>
> /**
>
More information about the mesa-dev
mailing list