[Mesa-dev] [PATCH 2/4] i965: Consider tessellation in get_pipeline_state_l3_weights.

Francisco Jerez currojerez at riseup.net
Fri Feb 12 07:28:44 UTC 2016


Kenneth Graunke <kenneth at whitecape.org> writes:

> I think this was just missed; Curro and I were probably writing
> code simultaneously and forgot to combine them at the end.
>
> Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
> Reviewed-by: Jordan Justen <jordan.l.justen at intel.com>
> ---
>  src/mesa/drivers/dri/i965/gen7_l3_state.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/src/mesa/drivers/dri/i965/gen7_l3_state.c b/src/mesa/drivers/dri/i965/gen7_l3_state.c
> index 0c1813f..c4babc2 100644
> --- a/src/mesa/drivers/dri/i965/gen7_l3_state.c
> +++ b/src/mesa/drivers/dri/i965/gen7_l3_state.c
> @@ -298,7 +298,12 @@ static struct brw_l3_weights
>  get_pipeline_state_l3_weights(const struct brw_context *brw)
>  {
>     const struct brw_stage_state *stage_states[] = {
> -      &brw->vs.base, &brw->gs.base, &brw->wm.base, &brw->cs.base
> +      [MESA_SHADER_VERTEX] = &brw->vs.base,
> +      [MESA_SHADER_TESS_CTRL] = &brw->tcs.base,
> +      [MESA_SHADER_TESS_EVAL] = &brw->tes.base,
> +      [MESA_SHADER_GEOMETRY] = &brw->gs.base,
> +      [MESA_SHADER_FRAGMENT] = &brw->wm.base,
> +      [MESA_SHADER_COMPUTE] = &brw->cs.base

Because the ordering of the stage_states entries is fully immaterial now
(its just a set of brw_stage_state structs with no ordering implied),
the designated initializers are pretty much just noise, would you mind
leaving them out?  With that changed this patch is:

Reviewed-by: Francisco Jerez <currojerez at riseup.net>

>     };
>     bool needs_dc = false, needs_slm = false;
>  
> -- 
> 2.7.0
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 212 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20160211/1cae856d/attachment.sig>


More information about the mesa-dev mailing list