[Mesa-dev] [PATCH] intel/fs: Fix a typo in need_matching_subreg_offset
Mark Janes
mark.a.janes at intel.com
Tue Oct 2 08:51:08 UTC 2018
Tested-by: Mark Janes <mark.a.janes at intel.com>
Jason Ekstrand <jason at jlekstrand.net> writes:
> This fixes a bunch of Vulkan subgroup tests on little core platforms.
>
> Fixes: 4150920b95 "intel/fs: Add a helper for emitting scan operations"
> ---
> src/intel/compiler/brw_fs_builder.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/intel/compiler/brw_fs_builder.h b/src/intel/compiler/brw_fs_builder.h
> index 7bee2aa0b9b..0cafaf50e56 100644
> --- a/src/intel/compiler/brw_fs_builder.h
> +++ b/src/intel/compiler/brw_fs_builder.h
> @@ -795,7 +795,7 @@ namespace brw {
> !gen_device_info_is_9lp(shader->devinfo))
> return false;
>
> - if (type_sz(type > 4))
> + if (type_sz(type) > 4)
> return true;
>
> if (opcode == BRW_OPCODE_MUL &&
> --
> 2.17.1
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list