layers: Add compressed texture query utils
These functions help to identify compressed formats categories.
Change-Id: Ia21da00924eb1f5c6f4a5310676e056899c340af
diff --git a/layers/vk_layer_utils.h b/layers/vk_layer_utils.h
index 68724c8..98107ff 100644
--- a/layers/vk_layer_utils.h
+++ b/layers/vk_layer_utils.h
@@ -113,6 +113,9 @@
return (vk_format_is_stencil_only(format) || vk_format_is_depth_and_stencil(format));
}
+VK_LAYER_EXPORT bool vk_format_is_compressed_ETC2_EAC(VkFormat format);
+VK_LAYER_EXPORT bool vk_format_is_compressed_ASTC_LDR(VkFormat format);
+VK_LAYER_EXPORT bool vk_format_is_compressed_BC(VkFormat format);
VK_LAYER_EXPORT bool vk_format_is_norm(VkFormat format);
VK_LAYER_EXPORT bool vk_format_is_unorm(VkFormat format);
VK_LAYER_EXPORT bool vk_format_is_snorm(VkFormat format);