Reviewed-by: Jason Ekstrand <[email protected]>
On Tue, Dec 4, 2018 at 1:18 AM Iago Toral Quiroga <[email protected]> wrote:
> ---
> src/compiler/shader_info.h | 1 +
> src/compiler/spirv/spirv_to_nir.c | 4 +++-
> 2 files changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/src/compiler/shader_info.h b/src/compiler/shader_info.h
> index 65bc0588d67..0a3cb37069c 100644
> --- a/src/compiler/shader_info.h
> +++ b/src/compiler/shader_info.h
> @@ -45,6 +45,7 @@ struct spirv_supported_capabilities {
> bool variable_pointers;
> bool storage_16bit;
> bool int16;
> + bool float16;
> bool shader_viewport_index_layer;
> bool subgroup_arithmetic;
> bool subgroup_ballot;
> diff --git a/src/compiler/spirv/spirv_to_nir.c
> b/src/compiler/spirv/spirv_to_nir.c
> index a05c4d236ca..6f6673c8fb1 100644
> --- a/src/compiler/spirv/spirv_to_nir.c
> +++ b/src/compiler/spirv/spirv_to_nir.c
> @@ -3415,7 +3415,6 @@ vtn_handle_preamble_instruction(struct vtn_builder
> *b, SpvOp opcode,
> case SpvCapabilityLinkage:
> case SpvCapabilityVector16:
> case SpvCapabilityFloat16Buffer:
> - case SpvCapabilityFloat16:
> case SpvCapabilityInt64Atomics:
> case SpvCapabilityStorageImageMultisample:
> case SpvCapabilityInt8:
> @@ -3432,6 +3431,9 @@ vtn_handle_preamble_instruction(struct vtn_builder
> *b, SpvOp opcode,
> case SpvCapabilityFloat64:
> spv_check_supported(float64, cap);
> break;
> + case SpvCapabilityFloat16:
> + spv_check_supported(float16, cap);
> + break;
> case SpvCapabilityInt64:
> spv_check_supported(int64, cap);
> break;
> --
> 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