Lines Matching refs:VkFormat
96 static inline bool vk_format_is_undef(VkFormat format) { return (format == VK_FORMAT_UNDEFINED); } in vk_format_is_undef()
98 bool vk_format_is_depth_or_stencil(VkFormat format);
99 bool vk_format_is_depth_and_stencil(VkFormat format);
100 bool vk_format_is_depth_only(VkFormat format);
101 bool vk_format_is_stencil_only(VkFormat format);
103 static inline bool vk_format_is_color(VkFormat format) { in vk_format_is_color()
107 VK_LAYER_EXPORT bool vk_format_is_norm(VkFormat format);
108 VK_LAYER_EXPORT bool vk_format_is_int(VkFormat format);
109 VK_LAYER_EXPORT bool vk_format_is_sint(VkFormat format);
110 VK_LAYER_EXPORT bool vk_format_is_uint(VkFormat format);
111 VK_LAYER_EXPORT bool vk_format_is_float(VkFormat format);
112 VK_LAYER_EXPORT bool vk_format_is_srgb(VkFormat format);
113 VK_LAYER_EXPORT bool vk_format_is_compressed(VkFormat format);
114 VK_LAYER_EXPORT VkExtent2D vk_format_compressed_block_size(VkFormat format);
115 VK_LAYER_EXPORT size_t vk_format_get_size(VkFormat format);
116 VK_LAYER_EXPORT unsigned int vk_format_get_channel_count(VkFormat format);
117 VK_LAYER_EXPORT VkFormatCompatibilityClass vk_format_get_compatibility_class(VkFormat format);