From 7dea1e83d2b8dbf53f6d04fadc61b3e2bdcb493f Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Wed, 8 Oct 2025 13:41:18 +0200 Subject: [PATCH] vkd3d-shader: Get rid of component_type_is_64_bit(). Its last user was removed in commit 9623ca4a6fa33b49f1d94c08fb799076fe998afd. --- libs/vkd3d-shader/vkd3d_shader_private.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libs/vkd3d-shader/vkd3d_shader_private.h b/libs/vkd3d-shader/vkd3d_shader_private.h index 5c9312f38..e7ddab60f 100644 --- a/libs/vkd3d-shader/vkd3d_shader_private.h +++ b/libs/vkd3d-shader/vkd3d_shader_private.h @@ -1918,12 +1918,6 @@ static inline enum vsir_data_type vsir_data_type_from_component_type(enum vkd3d_ return VSIR_DATA_UNUSED; } -static inline bool component_type_is_64_bit(enum vkd3d_shader_component_type component_type) -{ - return component_type == VKD3D_SHADER_COMPONENT_DOUBLE || component_type == VKD3D_SHADER_COMPONENT_INT64 - || component_type == VKD3D_SHADER_COMPONENT_UINT64; -} - static inline unsigned int vsir_write_mask_get_component_idx(uint32_t write_mask) { unsigned int i;