From cb8c851bec08a9483ce52f57c71922c9b145b9d3 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Wed, 10 Sep 2025 16:48:53 +0200 Subject: [PATCH] vkd3d-shader/hlsl: Remove a hlsl_type_is_integer() prototype. One should be plenty. --- libs/vkd3d-shader/hlsl.h | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/vkd3d-shader/hlsl.h b/libs/vkd3d-shader/hlsl.h index 82d77ca23..62bcd78c0 100644 --- a/libs/vkd3d-shader/hlsl.h +++ b/libs/vkd3d-shader/hlsl.h @@ -1799,7 +1799,6 @@ bool hlsl_type_is_unsigned_integer(const struct hlsl_type *type); unsigned int hlsl_type_minor_size(const struct hlsl_type *type); unsigned int hlsl_type_major_size(const struct hlsl_type *type); unsigned int hlsl_type_element_count(const struct hlsl_type *type); -bool hlsl_type_is_integer(const struct hlsl_type *type); bool hlsl_type_is_minimum_precision(const struct hlsl_type *type); bool hlsl_type_is_resource(const struct hlsl_type *type); bool hlsl_type_is_shader(const struct hlsl_type *type);