Lines Matching refs:VkFormat

40 const std::map<VkFormat, VULKAN_FORMAT_INFO> vk_format_table = {
282 VK_LAYER_EXPORT bool FormatIsCompressed_ETC2_EAC(VkFormat format) { in FormatIsCompressed_ETC2_EAC()
305 VK_LAYER_EXPORT bool FormatIsCompressed_ASTC_LDR(VkFormat format) { in FormatIsCompressed_ASTC_LDR()
346 VK_LAYER_EXPORT bool FormatIsCompressed_BC(VkFormat format) { in FormatIsCompressed_BC()
375 VK_LAYER_EXPORT bool FormatIsCompressed_PVRTC(VkFormat format) { in FormatIsCompressed_PVRTC()
396 VK_LAYER_EXPORT bool FormatIsSinglePlane_422(VkFormat format) { in FormatIsSinglePlane_422()
417 VK_LAYER_EXPORT bool FormatIsCompressed(VkFormat format) { in FormatIsCompressed()
422 VK_LAYER_EXPORT bool FormatIsPacked(VkFormat format) { in FormatIsPacked()
485 VK_LAYER_EXPORT bool FormatElementIsTexel(VkFormat format) { in FormatElementIsTexel()
494 VK_LAYER_EXPORT bool FormatIsDepthOrStencil(VkFormat format) { in FormatIsDepthOrStencil()
499 VK_LAYER_EXPORT bool FormatIsDepthAndStencil(VkFormat format) { in FormatIsDepthAndStencil()
515 VK_LAYER_EXPORT bool FormatIsStencilOnly(VkFormat format) { return (format == VK_FORMAT_S8_UINT); } in FormatIsStencilOnly()
518 VK_LAYER_EXPORT bool FormatIsDepthOnly(VkFormat format) { in FormatIsDepthOnly()
535 VK_LAYER_EXPORT bool FormatIsNorm(VkFormat format) { in FormatIsNorm()
610 VK_LAYER_EXPORT bool FormatIsUNorm(VkFormat format) { in FormatIsUNorm()
668 VK_LAYER_EXPORT bool FormatIsSNorm(VkFormat format) { in FormatIsSNorm()
699 VK_LAYER_EXPORT bool FormatIsInt(VkFormat format) { return (FormatIsSInt(format) || FormatIsUInt(fo… in FormatIsInt()
702 VK_LAYER_EXPORT bool FormatIsUInt(VkFormat format) { in FormatIsUInt()
738 VK_LAYER_EXPORT bool FormatIsSInt(VkFormat format) { in FormatIsSInt()
773 VK_LAYER_EXPORT bool FormatIsFloat(VkFormat format) { in FormatIsFloat()
803 VK_LAYER_EXPORT bool FormatIsSRGB(VkFormat format) { in FormatIsSRGB()
845 VK_LAYER_EXPORT bool FormatIsUScaled(VkFormat format) { in FormatIsUScaled()
872 VK_LAYER_EXPORT bool FormatIsSScaled(VkFormat format) { in FormatIsSScaled()
902 VK_LAYER_EXPORT VkExtent3D FormatTexelBlockExtent(VkFormat format) { in FormatTexelBlockExtent()
1043 VK_LAYER_EXPORT uint32_t FormatDepthSize(VkFormat format) { in FormatDepthSize()
1065 VK_LAYER_EXPORT VkFormatNumericalType FormatDepthNumericalType(VkFormat format) { in FormatDepthNumericalType()
1085 VK_LAYER_EXPORT uint32_t FormatStencilSize(VkFormat format) { in FormatStencilSize()
1101 VK_LAYER_EXPORT VkFormatNumericalType FormatStencilNumericalType(VkFormat format) { in FormatStencilNumericalType()
1117 VK_LAYER_EXPORT uint32_t FormatPlaneCount(VkFormat format) { in FormatPlaneCount()
1150 VK_LAYER_EXPORT VkFormatCompatibilityClass FormatCompatibilityClass(VkFormat format) { in FormatCompatibilityClass()
1160 VK_LAYER_EXPORT uint32_t FormatElementSize(VkFormat format, VkImageAspectFlags aspectMask) { in FormatElementSize()
1188 VK_LAYER_EXPORT double FormatTexelSize(VkFormat format) { in FormatTexelSize()
1199 uint32_t FormatChannelCount(VkFormat format) { in FormatChannelCount()
1227 VkFormat compatible_format;
1236 const std::map<VkFormat, VULKAN_MULTIPLANE_COMPATIBILITY> vk_multiplane_compatibility_map {
1319 VK_LAYER_EXPORT VkFormat FindMultiplaneCompatibleFormat(VkFormat mp_fmt, VkImageAspectFlags plane_a… in FindMultiplaneCompatibleFormat()
1329 VK_LAYER_EXPORT VkExtent2D FindMultiplaneExtentDivisors(VkFormat mp_fmt, VkImageAspectFlags plane_a… in FindMultiplaneExtentDivisors()
1342 VK_LAYER_EXPORT bool FormatSizesAreEqual(VkFormat srcFormat, VkFormat dstFormat, uint32_t region_co… in FormatSizesAreEqual()
1349VkFormat planeFormat = FindMultiplaneCompatibleFormat(srcFormat, regions[i].srcSubresource.aspectM… in FormatSizesAreEqual()
1355VkFormat planeFormat = FindMultiplaneCompatibleFormat(dstFormat, regions[i].dstSubresource.aspectM… in FormatSizesAreEqual()
1370 VK_LAYER_EXPORT bool FormatRequiresYcbcrConversion(VkFormat format) { in FormatRequiresYcbcrConversion()