[Mesa-dev] [PATCH v2 03/42] i965: Adjust gen check in can_do_pipelined_register_writes
Francisco Jerez
currojerez at riseup.net
Wed Nov 18 04:41:07 PST 2015
Jordan Justen <jordan.l.justen at intel.com> writes:
> From: Francisco Jerez <currojerez at riseup.net>
>
> Allow for pipelined register writes for gen < 7.
>
> v2:
> * Split from another patch and adjust comment (jljusten)
>
> Reviewed-by: Jordan Justen <jordan.l.justen at intel.com>
> ---
> src/mesa/drivers/dri/i965/intel_extensions.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/i965/intel_extensions.c b/src/mesa/drivers/dri/i965/intel_extensions.c
> index f70f403..81215db 100644
> --- a/src/mesa/drivers/dri/i965/intel_extensions.c
> +++ b/src/mesa/drivers/dri/i965/intel_extensions.c
> @@ -40,8 +40,11 @@
> static bool
> can_do_pipelined_register_writes(struct brw_context *brw)
> {
> - /* Supposedly, Broadwell just works. */
> - if (brw->gen >= 8)
> + /**
> + * gen >= 8 specifically allows these writes. gen <= 6 also
> + * doesn't block them.
> + */
Not only they don't block them, they don't block *anything* AFAIK...
> + if (brw->gen != 7)
> return true;
>
> static int result = -1;
> --
> 2.6.2
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 212 bytes
Desc: not available
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20151118/d087eb66/attachment.sig>
More information about the mesa-dev
mailing list