Reviewed-by: Jason Ekstrand <[email protected]>
On Tue, Dec 4, 2018 at 1:19 AM Iago Toral Quiroga <[email protected]> wrote:
> ---
> src/intel/compiler/brw_reg_type.h | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/src/intel/compiler/brw_reg_type.h
> b/src/intel/compiler/brw_reg_type.h
> index ffbec90d3fe..a3365b7e34c 100644
> --- a/src/intel/compiler/brw_reg_type.h
> +++ b/src/intel/compiler/brw_reg_type.h
> @@ -82,6 +82,24 @@ brw_reg_type_is_floating_point(enum brw_reg_type type)
> }
> }
>
> +static inline bool
> +brw_reg_type_is_integer(enum brw_reg_type type)
> +{
> + switch (type) {
> + case BRW_REGISTER_TYPE_Q:
> + case BRW_REGISTER_TYPE_UQ:
> + case BRW_REGISTER_TYPE_D:
> + case BRW_REGISTER_TYPE_UD:
> + case BRW_REGISTER_TYPE_W:
> + case BRW_REGISTER_TYPE_UW:
> + case BRW_REGISTER_TYPE_B:
> + case BRW_REGISTER_TYPE_UV:
> + return true;
> + default:
> + return false;
> + }
> +}
> +
> unsigned
> brw_reg_type_to_hw_type(const struct gen_device_info *devinfo,
> enum brw_reg_file file, enum brw_reg_type type);
> --
> 2.17.1
>
> _______________________________________________
> mesa-dev mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
>
_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev