| /* |
| * Copyright 2022 Google LLC |
| * |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #include "src/gpu/graphite/vk/VulkanCaps.h" |
| |
| #include "include/core/SkTextureCompressionType.h" |
| #include "include/gpu/graphite/ContextOptions.h" |
| #include "include/gpu/graphite/TextureInfo.h" |
| #include "include/gpu/graphite/vk/VulkanGraphiteTypes.h" |
| #include "include/gpu/vk/VulkanExtensions.h" |
| #include "include/gpu/vk/VulkanTypes.h" |
| #include "src/gpu/SwizzlePriv.h" |
| #include "src/gpu/graphite/ContextUtils.h" |
| #include "src/gpu/graphite/GraphicsPipelineDesc.h" |
| #include "src/gpu/graphite/GraphiteResourceKey.h" |
| #include "src/gpu/graphite/RenderPassDesc.h" |
| #include "src/gpu/graphite/RendererProvider.h" |
| #include "src/gpu/graphite/RuntimeEffectDictionary.h" |
| #include "src/gpu/graphite/TextureInfoPriv.h" |
| #include "src/gpu/graphite/vk/VulkanGraphicsPipeline.h" |
| #include "src/gpu/graphite/vk/VulkanGraphiteUtils.h" |
| #include "src/gpu/graphite/vk/VulkanRenderPass.h" |
| #include "src/gpu/graphite/vk/VulkanResourceProvider.h" |
| #include "src/gpu/graphite/vk/VulkanSharedContext.h" |
| #include "src/gpu/graphite/vk/VulkanYcbcrConversion.h" |
| #include "src/gpu/vk/VulkanUtilsPriv.h" |
| #include "src/sksl/SkSLUtil.h" |
| |
| #ifdef SK_BUILD_FOR_ANDROID |
| #include <sys/system_properties.h> |
| #endif |
| |
| namespace skgpu::graphite { |
| |
| namespace { |
| skgpu::UniqueKey::Domain get_pipeline_domain() { |
| static const skgpu::UniqueKey::Domain kVulkanGraphicsPipelineDomain = |
| skgpu::UniqueKey::GenerateDomain(); |
| |
| return kVulkanGraphicsPipelineDomain; |
| } |
| } // namespace |
| |
| namespace { |
| struct EnabledFeatures { |
| // VkPhysicalDeviceFeatures |
| bool fDualSrcBlend = false; |
| // From VkPhysicalDeviceSamplerYcbcrConversionFeatures: |
| bool fSamplerYcbcrConversion = false; |
| // From VkPhysicalDeviceFaultFeaturesEXT: |
| bool fDeviceFault = false; |
| // From VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT: |
| bool fAdvancedBlendModes = false; |
| bool fCoherentAdvancedBlendModes = false; |
| // From VK_EXT_rasterization_order_attachment_access: |
| bool fRasterizationOrderColorAttachmentAccess = false; |
| }; |
| |
| // Walk the feature chain once and extract any enabled features that Graphite cares about. |
| EnabledFeatures GetEnabledFeature(const VkPhysicalDeviceFeatures2* features) { |
| EnabledFeatures enabled; |
| if (features) { |
| // Base features: |
| enabled.fDualSrcBlend = features->features.dualSrcBlend; |
| |
| // Extended features: |
| const VkBaseInStructure* pNext = static_cast<const VkBaseInStructure*>(features->pNext); |
| while (pNext) { |
| switch (pNext->sType) { |
| case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES: { |
| const auto* feature = |
| reinterpret_cast<const VkPhysicalDeviceSamplerYcbcrConversionFeatures*>( |
| pNext); |
| enabled.fSamplerYcbcrConversion = feature->samplerYcbcrConversion; |
| break; |
| } |
| case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FAULT_FEATURES_EXT: { |
| const auto* feature = |
| reinterpret_cast<const VkPhysicalDeviceFaultFeaturesEXT*>(pNext); |
| enabled.fDeviceFault = feature->deviceFault; |
| break; |
| } |
| case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_PROPERTIES_EXT: { |
| const auto* feature = reinterpret_cast< |
| const VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT*>(pNext); |
| // The feature struct being present at all indicated advanced blend mode |
| // support. A member of it indicates whether the device offers coherent or |
| // noncoherent support. |
| enabled.fAdvancedBlendModes = true; |
| enabled.fCoherentAdvancedBlendModes = |
| feature->advancedBlendCoherentOperations == VK_TRUE; |
| break; |
| } |
| case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RASTERIZATION_ORDER_ATTACHMENT_ACCESS_FEATURES_EXT: { |
| const auto* feature = reinterpret_cast< |
| const VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXT*>( |
| pNext); |
| enabled.fRasterizationOrderColorAttachmentAccess = |
| feature->rasterizationOrderColorAttachmentAccess; |
| break; |
| } |
| default: |
| break; |
| } |
| |
| pNext = pNext->pNext; |
| } |
| } |
| return enabled; |
| } |
| } // namespace |
| |
| VulkanCaps::VulkanCaps(const ContextOptions& contextOptions, |
| const skgpu::VulkanInterface* vkInterface, |
| VkPhysicalDevice physDev, |
| uint32_t physicalDeviceVersion, |
| const VkPhysicalDeviceFeatures2* features, |
| const skgpu::VulkanExtensions* extensions, |
| Protected isProtected) |
| : Caps() { |
| this->init(contextOptions, vkInterface, physDev, physicalDeviceVersion, features, extensions, |
| isProtected); |
| } |
| |
| VulkanCaps::~VulkanCaps() {} |
| |
| namespace { |
| void populate_resource_binding_reqs(ResourceBindingRequirements& reqs) { |
| // We can enable std430 and ensure no array stride mismatch in functions because all bound |
| // buffers will either be a UBO or SSBO, depending on if storage buffers are enabled or not. |
| // Although intrinsic uniforms always use uniform buffers, they do not contain any arrays. |
| reqs.fStorageBufferLayout = Layout::kStd430; |
| |
| // TODO(b/374997389): Somehow convey & enforce Layout::kStd430 for push constants. |
| reqs.fUniformBufferLayout = Layout::kStd140; |
| reqs.fSeparateTextureAndSamplerBinding = false; |
| |
| // Vulkan uses push constants instead of an intrinsic UBO, so we do not need to assign |
| // reqs.fIntrinsicBufferBinding. |
| reqs.fUseVulkanPushConstantsForIntrinsicConstants = true; |
| |
| // Assign uniform buffer binding values for shader generation |
| reqs.fRenderStepBufferBinding = |
| VulkanGraphicsPipeline::kRenderStepUniformBufferIndex; |
| reqs.fPaintParamsBufferBinding = VulkanGraphicsPipeline::kPaintUniformBufferIndex; |
| reqs.fGradientBufferBinding = VulkanGraphicsPipeline::kGradientBufferIndex; |
| |
| // Assign descriptor set indices for shader generation |
| reqs.fUniformsSetIdx = VulkanGraphicsPipeline::kUniformBufferDescSetIndex; |
| reqs.fTextureSamplerSetIdx = VulkanGraphicsPipeline::kTextureBindDescSetIndex; |
| // Note: We use kDstAsInputDescSetIndex as opposed to kLoadMsaaFromResolveInputDescSetIndex |
| // because the former is what is needed for SkSL generation purposes at the graphite level. The |
| // latter is simply internally referenced when defining bespoke SkSL for loading MSAA from |
| // resolve. |
| reqs.fInputAttachmentSetIdx = VulkanGraphicsPipeline::kDstAsInputDescSetIndex; |
| } |
| } // anonymous |
| |
| void VulkanCaps::init(const ContextOptions& contextOptions, |
| const skgpu::VulkanInterface* vkInterface, |
| VkPhysicalDevice physDev, |
| uint32_t physicalDeviceVersion, |
| const VkPhysicalDeviceFeatures2* features, |
| const skgpu::VulkanExtensions* extensions, |
| Protected isProtected) { |
| VkPhysicalDeviceProperties physDevProperties; |
| VULKAN_CALL(vkInterface, GetPhysicalDeviceProperties(physDev, &physDevProperties)); |
| |
| const EnabledFeatures enabledFeatures = GetEnabledFeature(features); |
| |
| #if defined(GPU_TEST_UTILS) |
| this->setDeviceName(physDevProperties.deviceName); |
| #endif |
| |
| // Graphite requires Vulkan version 1.1 or later, which always has protected support. |
| if (isProtected == Protected::kYes) { |
| fProtectedSupport = true; |
| fShouldAlwaysUseDedicatedImageMemory = true; |
| } |
| |
| fPhysicalDeviceMemoryProperties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2; |
| fPhysicalDeviceMemoryProperties2.pNext = nullptr; |
| VULKAN_CALL(vkInterface, |
| GetPhysicalDeviceMemoryProperties2(physDev, &fPhysicalDeviceMemoryProperties2)); |
| |
| // We could actually query and get a max size for each config, however maxImageDimension2D will |
| // give the minimum max size across all configs. So for simplicity we will use that for now. |
| fMaxTextureSize = std::min(physDevProperties.limits.maxImageDimension2D, (uint32_t)INT_MAX); |
| |
| // Assert that our push constant sizes are below the maximum allowed (which is guaranteed to be |
| // at least 128 bytes per spec). |
| static_assert(VulkanResourceProvider::kIntrinsicConstantSize < 128 && |
| VulkanResourceProvider::kLoadMSAAPushConstantSize < 128); |
| |
| fRequiredUniformBufferAlignment = physDevProperties.limits.minUniformBufferOffsetAlignment; |
| fRequiredStorageBufferAlignment = physDevProperties.limits.minStorageBufferOffsetAlignment; |
| fRequiredTransferBufferAlignment = 4; |
| |
| fMaxVaryings = std::min(physDevProperties.limits.maxVertexOutputComponents, |
| physDevProperties.limits.maxFragmentInputComponents) / 4; |
| |
| // Unlike D3D, WebGPU, and Metal, the Vulkan NDC coordinate space is aligned with the top-left |
| // Y-down coordinate space of the viewport. |
| fNDCYAxisPointsDown = true; |
| |
| populate_resource_binding_reqs(fResourceBindingReqs); |
| |
| // TODO(b/353983969): Enable storage buffers once perf regressions are addressed. |
| fStorageBufferSupport = false; |
| |
| VkPhysicalDeviceMemoryProperties deviceMemoryProperties; |
| VULKAN_CALL(vkInterface, GetPhysicalDeviceMemoryProperties(physDev, &deviceMemoryProperties)); |
| fSupportsMemorylessAttachments = false; |
| VkMemoryPropertyFlags requiredLazyFlags = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; |
| if (fProtectedSupport) { |
| // If we have a protected context we can only use memoryless images if they also support |
| // being protected. With current devices we don't actually expect this combination to be |
| // supported, but this at least covers us for future devices that may allow it. |
| requiredLazyFlags |= VK_MEMORY_PROPERTY_PROTECTED_BIT; |
| } |
| for (uint32_t i = 0; i < deviceMemoryProperties.memoryTypeCount; ++i) { |
| const uint32_t& supportedFlags = deviceMemoryProperties.memoryTypes[i].propertyFlags; |
| if ((supportedFlags & requiredLazyFlags) == requiredLazyFlags) { |
| fSupportsMemorylessAttachments = true; |
| } |
| } |
| |
| #ifdef SK_BUILD_FOR_UNIX |
| if (kNvidia_VkVendor == physDevProperties.vendorID) { |
| // On NVIDIA linux we see a big perf regression when not using dedicated image allocations. |
| fShouldAlwaysUseDedicatedImageMemory = true; |
| } |
| #endif |
| |
| if (physDevProperties.vendorID == kNvidia_VkVendor || |
| physDevProperties.vendorID == kAMD_VkVendor) { |
| // On discrete GPUs, it can be faster to read gpu-only memory compared to memory that is |
| // also mappable on the host. |
| fGpuOnlyBuffersMorePerformant = true; |
| |
| // On discrete GPUs we try to use special DEVICE_LOCAL and HOST_VISIBLE memory for our |
| // cpu write, gpu read buffers. This memory is not ideal to be kept persistently mapped. |
| // Some discrete GPUs do not expose this special memory, however we still disable |
| // persistently mapped buffers for all of them since most GPUs with updated drivers do |
| // expose it. If this becomes an issue we can try to be more fine grained. |
| fShouldPersistentlyMapCpuToGpuBuffers = false; |
| } |
| |
| if (physDevProperties.vendorID == kAMD_VkVendor) { |
| // AMD advertises support for MAX_UINT vertex attributes but in reality only supports 32. |
| fMaxVertexAttributes = 32; |
| } else { |
| fMaxVertexAttributes = physDevProperties.limits.maxVertexInputAttributes; |
| } |
| fMaxUniformBufferRange = physDevProperties.limits.maxUniformBufferRange; |
| fMaxStorageBufferRange = physDevProperties.limits.maxStorageBufferRange; |
| |
| #ifdef SK_BUILD_FOR_ANDROID |
| if (extensions->hasExtension( |
| VK_ANDROID_EXTERNAL_MEMORY_ANDROID_HARDWARE_BUFFER_EXTENSION_NAME, 2)) { |
| fSupportsAHardwareBufferImages = true; |
| } |
| #endif |
| |
| fSupportsYcbcrConversion = enabledFeatures.fSamplerYcbcrConversion; |
| fSupportsDeviceFaultInfo = enabledFeatures.fDeviceFault; |
| |
| if (enabledFeatures.fAdvancedBlendModes) { |
| fBlendEqSupport = enabledFeatures.fCoherentAdvancedBlendModes |
| ? BlendEquationSupport::kAdvancedCoherent |
| : BlendEquationSupport::kAdvancedNoncoherent; |
| fShaderCaps->fAdvBlendEqInteraction = |
| SkSL::ShaderCaps::AdvBlendEqInteraction::kAutomatic_AdvBlendEqInteraction; |
| } |
| |
| // Note: ARM GPUs have always been coherent, do not add a subpass self-dependency even if the |
| // application hasn't enabled this feature as it comes with a performance cost on this GPU. |
| fIsInputAttachmentReadCoherent = enabledFeatures.fRasterizationOrderColorAttachmentAccess || |
| physDevProperties.vendorID == kARM_VkVendor; |
| |
| // TODO(skia:14639): We must force std430 array stride when using SSBOs since SPIR-V generation |
| // cannot handle mixed array strides being passed into functions. |
| fShaderCaps->fForceStd430ArrayLayout = |
| fStorageBufferSupport && fResourceBindingReqs.fStorageBufferLayout == Layout::kStd430; |
| |
| fShaderCaps->fDualSourceBlendingSupport = enabledFeatures.fDualSrcBlend; |
| |
| // Note: Do not add extension/feature checks after this; driver workarounds should be done last. |
| if (!contextOptions.fDisableDriverCorrectnessWorkarounds) { |
| this->applyDriverCorrectnessWorkarounds(physDevProperties); |
| } |
| |
| // Note that format table initialization should be performed at the end of this method to ensure |
| // all capability determinations are completed prior to populating the format tables. |
| this->initFormatTable(vkInterface, physDev, physDevProperties); |
| this->initDepthStencilFormatTable(vkInterface, physDev, physDevProperties); |
| |
| this->finishInitialization(contextOptions); |
| } |
| |
| void VulkanCaps::applyDriverCorrectnessWorkarounds(const VkPhysicalDeviceProperties& properties) { |
| // By default, we initialize the Android API version to 0 since we consider certain things |
| // "fixed" only once above a certain version. This way, we default to enabling the workarounds. |
| int androidAPIVersion = 0; |
| #if defined(SK_BUILD_FOR_ANDROID) |
| char androidAPIVersionStr[PROP_VALUE_MAX]; |
| int strLength = __system_property_get("ro.build.version.sdk", androidAPIVersionStr); |
| // Defaults to zero since most checks care if it is greater than a specific value. So this will |
| // just default to it being less. |
| androidAPIVersion = (strLength == 0) ? 0 : atoi(androidAPIVersionStr); |
| #endif |
| |
| // On Mali galaxy s7 we see lots of rendering issues when we suballocate VkImages. |
| if (kARM_VkVendor == properties.vendorID && androidAPIVersion <= 28) { |
| fShouldAlwaysUseDedicatedImageMemory = true; |
| } |
| |
| // On Qualcomm the gpu resolves an area larger than the render pass bounds when using |
| // discardable msaa attachments. This causes the resolve to resolve uninitialized data from the |
| // msaa image into the resolve image. This was reproed on a Pixel4 using the DstReadShuffle GM |
| // where the top half of the GM would drop out. In Ganesh we had also seen this on Arm devices, |
| // but the issue hasn't appeared yet in Graphite. It may just have occured on older Arm drivers |
| // that we don't even test any more. This also occurs on swiftshader: b/303705884 in Ganesh, but |
| // we aren't currently testing that in Graphite yet so leaving that off the workaround for now |
| // until we run into it. |
| if (kQualcomm_VkVendor == properties.vendorID) { |
| fMustLoadFullImageForMSAA = true; |
| } |
| } |
| |
| // These are all the valid VkFormats that we support in Skia. They are roughly ordered from most |
| // frequently used to least to improve look up times in arrays. |
| static constexpr VkFormat kVkFormats[] = { |
| VK_FORMAT_R8G8B8A8_UNORM, |
| VK_FORMAT_R8_UNORM, |
| VK_FORMAT_B8G8R8A8_UNORM, |
| VK_FORMAT_R5G6B5_UNORM_PACK16, |
| VK_FORMAT_R16G16B16A16_SFLOAT, |
| VK_FORMAT_R16_SFLOAT, |
| VK_FORMAT_R8G8B8_UNORM, |
| VK_FORMAT_R8G8_UNORM, |
| VK_FORMAT_A2B10G10R10_UNORM_PACK32, |
| VK_FORMAT_A2R10G10B10_UNORM_PACK32, |
| VK_FORMAT_B4G4R4A4_UNORM_PACK16, |
| VK_FORMAT_R4G4B4A4_UNORM_PACK16, |
| VK_FORMAT_R8G8B8A8_SRGB, |
| VK_FORMAT_B8G8R8A8_SRGB, |
| VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK, |
| VK_FORMAT_BC1_RGB_UNORM_BLOCK, |
| VK_FORMAT_BC1_RGBA_UNORM_BLOCK, |
| VK_FORMAT_R16_UNORM, |
| VK_FORMAT_R16G16_UNORM, |
| VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM, |
| VK_FORMAT_G8_B8R8_2PLANE_420_UNORM, |
| VK_FORMAT_R16G16B16A16_UNORM, |
| VK_FORMAT_R16G16_SFLOAT, |
| }; |
| // These are all the valid depth/stencil formats that we support in Skia. |
| static constexpr VkFormat kDepthStencilVkFormats[] = { |
| VK_FORMAT_S8_UINT, |
| VK_FORMAT_D16_UNORM, |
| VK_FORMAT_D32_SFLOAT, |
| VK_FORMAT_D24_UNORM_S8_UINT, |
| VK_FORMAT_D32_SFLOAT_S8_UINT, |
| }; |
| |
| bool VulkanCaps::isSampleCountSupported(TextureFormat format, uint8_t requestedSampleCount) const { |
| VkFormat vkFormat = TextureFormatToVkFormat(format); |
| const SupportedSampleCounts* sampleCounts; |
| |
| // TODO(b/390473370): When Caps stores the format tables, the color format and depth stencil |
| // format infos will be combined and this will be simplified. |
| if (TextureFormatIsDepthOrStencil(format)) { |
| const DepthStencilFormatInfo& formatInfo = this->getDepthStencilFormatInfo(vkFormat); |
| if (!formatInfo.isDepthStencilSupported( |
| formatInfo.fFormatProperties.optimalTilingFeatures)) { |
| return false; |
| } |
| sampleCounts = &formatInfo.fSupportedSampleCounts; |
| } else { |
| const FormatInfo& formatInfo = this->getFormatInfo(vkFormat); |
| if (!formatInfo.isRenderable(VK_IMAGE_TILING_OPTIMAL, 1)) { |
| return false; |
| } |
| sampleCounts = &formatInfo.fSupportedSampleCounts; |
| } |
| |
| return sampleCounts->isSampleCountSupported(requestedSampleCount); |
| } |
| |
| TextureFormat VulkanCaps::getDepthStencilFormat(SkEnumBitMask<DepthStencilFlags> flags) const { |
| VkFormat format = fDepthStencilFlagsToFormatTable[flags.value()]; |
| return VkFormatToTextureFormat(format); |
| } |
| |
| TextureInfo VulkanCaps::getDefaultAttachmentTextureInfo(AttachmentDesc desc, |
| Protected isProtected, |
| Discardable discardable) const { |
| if ((isProtected == Protected::kYes && !this->protectedSupport()) || |
| !this->isSampleCountSupported(desc.fFormat, desc.fSampleCount)) { |
| return {}; |
| } |
| |
| const bool isDepthStencil = TextureFormatIsDepthOrStencil(desc.fFormat); |
| |
| VulkanTextureInfo info; |
| info.fSampleCount = desc.fSampleCount; |
| info.fMipmapped = Mipmapped::kNo; |
| info.fFlags = (isProtected == Protected::kYes) ? VK_IMAGE_CREATE_PROTECTED_BIT : 0; |
| info.fFormat = TextureFormatToVkFormat(desc.fFormat); |
| info.fImageTiling = VK_IMAGE_TILING_OPTIMAL; |
| |
| /** |
| * Graphite, unlike ganesh, does not require a dedicated MSAA attachment on every surface. |
| * MSAA textures now get resolved within the scope of a render pass, which can be done simply |
| * with the color attachment usage flag. So we no longer require transfer src/dst usage flags. |
| * All renderable textures in Vulkan are made with input attachment usage. |
| */ |
| VkImageUsageFlags flags = isDepthStencil |
| ? VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT |
| : VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT | VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT; |
| if (discardable == Discardable::kYes && fSupportsMemorylessAttachments) { |
| flags = flags | VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT; |
| } |
| |
| info.fImageUsageFlags = flags; |
| info.fSharingMode = VK_SHARING_MODE_EXCLUSIVE; |
| info.fAspectMask = VK_IMAGE_ASPECT_COLOR_BIT; |
| |
| return TextureInfos::MakeVulkan(info); |
| } |
| |
| TextureInfo VulkanCaps::getDefaultSampledTextureInfo(SkColorType ct, |
| Mipmapped mipmapped, |
| Protected isProtected, |
| Renderable isRenderable) const { |
| VkFormat format = this->getFormatFromColorType(ct); |
| const FormatInfo& formatInfo = this->getFormatInfo(format); |
| |
| static constexpr int kSingleSampled = 1; |
| if ((isProtected == Protected::kYes && !this->protectedSupport()) || |
| !formatInfo.isTexturable(VK_IMAGE_TILING_OPTIMAL) || |
| (isRenderable == Renderable::kYes && |
| !formatInfo.isRenderable(VK_IMAGE_TILING_OPTIMAL, kSingleSampled)) ) { |
| return {}; |
| } |
| |
| VulkanTextureInfo info; |
| info.fSampleCount = kSingleSampled; |
| info.fMipmapped = mipmapped; |
| info.fFlags = (isProtected == Protected::kYes) ? VK_IMAGE_CREATE_PROTECTED_BIT : 0; |
| info.fFormat = format; |
| info.fImageTiling = VK_IMAGE_TILING_OPTIMAL; |
| info.fImageUsageFlags = VK_IMAGE_USAGE_SAMPLED_BIT | |
| VK_IMAGE_USAGE_TRANSFER_SRC_BIT | |
| VK_IMAGE_USAGE_TRANSFER_DST_BIT; |
| if (isRenderable == Renderable::kYes) { |
| // We make all renderable images support being used as input attachment |
| info.fImageUsageFlags = info.fImageUsageFlags | |
| VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT | |
| VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT; |
| } |
| info.fSharingMode = VK_SHARING_MODE_EXCLUSIVE; |
| info.fAspectMask = VK_IMAGE_ASPECT_COLOR_BIT; |
| |
| return TextureInfos::MakeVulkan(info); |
| } |
| |
| TextureInfo VulkanCaps::getTextureInfoForSampledCopy(const TextureInfo& textureInfo, |
| Mipmapped mipmapped) const { |
| VulkanTextureInfo info; |
| info.fSampleCount = 1; |
| info.fMipmapped = mipmapped; |
| info.fFormat = TextureInfoPriv::Get<VulkanTextureInfo>(textureInfo).fFormat; |
| info.fFlags = (textureInfo.isProtected() == Protected::kYes) ? |
| VK_IMAGE_CREATE_PROTECTED_BIT : 0; |
| info.fImageTiling = VK_IMAGE_TILING_OPTIMAL; |
| info.fImageUsageFlags = VK_IMAGE_USAGE_SAMPLED_BIT | |
| VK_IMAGE_USAGE_TRANSFER_SRC_BIT | |
| VK_IMAGE_USAGE_TRANSFER_DST_BIT; |
| info.fSharingMode = VK_SHARING_MODE_EXCLUSIVE; |
| |
| return TextureInfos::MakeVulkan(info); |
| } |
| |
| namespace { |
| VkFormat format_from_compression(SkTextureCompressionType compression) { |
| switch (compression) { |
| case SkTextureCompressionType::kETC2_RGB8_UNORM: |
| return VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK; |
| case SkTextureCompressionType::kBC1_RGB8_UNORM: |
| return VK_FORMAT_BC1_RGB_UNORM_BLOCK; |
| case SkTextureCompressionType::kBC1_RGBA8_UNORM: |
| return VK_FORMAT_BC1_RGBA_UNORM_BLOCK; |
| default: |
| return VK_FORMAT_UNDEFINED; |
| } |
| } |
| } |
| |
| TextureInfo VulkanCaps::getDefaultCompressedTextureInfo(SkTextureCompressionType compression, |
| Mipmapped mipmapped, |
| Protected isProtected) const { |
| VkFormat format = format_from_compression(compression); |
| const FormatInfo& formatInfo = this->getFormatInfo(format); |
| static constexpr int defaultSampleCount = 1; |
| if ((isProtected == Protected::kYes && !this->protectedSupport()) || |
| !formatInfo.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| return {}; |
| } |
| |
| VulkanTextureInfo info; |
| info.fSampleCount = defaultSampleCount; |
| info.fMipmapped = mipmapped; |
| info.fFlags = (isProtected == Protected::kYes) ? VK_IMAGE_CREATE_PROTECTED_BIT : 0; |
| info.fFormat = format; |
| info.fImageTiling = VK_IMAGE_TILING_OPTIMAL; |
| info.fImageUsageFlags = VK_IMAGE_USAGE_SAMPLED_BIT | |
| VK_IMAGE_USAGE_TRANSFER_SRC_BIT | |
| VK_IMAGE_USAGE_TRANSFER_DST_BIT; |
| info.fSharingMode = VK_SHARING_MODE_EXCLUSIVE; |
| info.fAspectMask = VK_IMAGE_ASPECT_COLOR_BIT; |
| |
| return TextureInfos::MakeVulkan(info); |
| } |
| |
| TextureInfo VulkanCaps::getDefaultStorageTextureInfo(SkColorType colorType) const { |
| VkFormat format = this->getFormatFromColorType(colorType); |
| const FormatInfo& formatInfo = this->getFormatInfo(format); |
| if (!formatInfo.isTexturable(VK_IMAGE_TILING_OPTIMAL) || |
| !formatInfo.isStorage(VK_IMAGE_TILING_OPTIMAL)) { |
| return {}; |
| } |
| |
| VulkanTextureInfo info; |
| info.fSampleCount = 1; |
| info.fMipmapped = Mipmapped::kNo; |
| info.fFlags = 0; |
| info.fFormat = format; |
| info.fImageTiling = VK_IMAGE_TILING_OPTIMAL; |
| // Storage textures are currently always sampleable from a shader |
| info.fImageUsageFlags = VK_IMAGE_USAGE_STORAGE_BIT | |
| VK_IMAGE_USAGE_SAMPLED_BIT | |
| VK_IMAGE_USAGE_TRANSFER_SRC_BIT; |
| info.fSharingMode = VK_SHARING_MODE_EXCLUSIVE; |
| info.fAspectMask = VK_IMAGE_ASPECT_COLOR_BIT; |
| |
| return TextureInfos::MakeVulkan(info); |
| } |
| |
| void VulkanCaps::initFormatTable(const skgpu::VulkanInterface* interface, |
| VkPhysicalDevice physDev, |
| const VkPhysicalDeviceProperties& properties) { |
| static_assert(std::size(kVkFormats) == VulkanCaps::kNumVkFormats, |
| "Size of VkFormats array must match static value in header"); |
| |
| std::fill_n(fColorTypeToFormatTable, kSkColorTypeCnt, VK_FORMAT_UNDEFINED); |
| |
| // NOTE: VkFormat's naming convention orders channels from low address to high address when |
| // interpreting unpacked formats. For packed formats, the channels are ordered most significant |
| // to least significant (making them opposite of the unpacked). |
| |
| // Go through all the formats and init their support surface and data ColorTypes. |
| // Format: VK_FORMAT_R8G8B8A8_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_R8G8B8A8_UNORM; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 2; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R8G8B8A8_UNORM, Surface: kRGBA_8888 |
| { |
| constexpr SkColorType ct = SkColorType::kRGBA_8888_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| // Format: VK_FORMAT_R8G8B8A8_UNORM, Surface: kRGB_888x |
| { |
| constexpr SkColorType ct = SkColorType::kRGB_888x_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag; |
| ctInfo.fReadSwizzle = skgpu::Swizzle::RGB1(); |
| } |
| } |
| } |
| |
| // Format: VK_FORMAT_R8_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_R8_UNORM; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 3; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R8_UNORM, Surface: kR_8 |
| { |
| constexpr SkColorType ct = SkColorType::kR8_unorm_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| // Format: VK_FORMAT_R8_UNORM, Surface: kAlpha_8 |
| { |
| constexpr SkColorType ct = SkColorType::kAlpha_8_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| ctInfo.fReadSwizzle = skgpu::Swizzle("000r"); |
| ctInfo.fWriteSwizzle = skgpu::Swizzle("a000"); |
| } |
| // Format: VK_FORMAT_R8_UNORM, Surface: kGray_8 |
| { |
| constexpr SkColorType ct = SkColorType::kGray_8_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag; |
| ctInfo.fReadSwizzle = skgpu::Swizzle("rrr1"); |
| } |
| } |
| } |
| |
| // Format: VK_FORMAT_B8G8R8A8_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_B8G8R8A8_UNORM; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_B8G8R8A8_UNORM, Surface: kBGRA_8888 |
| { |
| constexpr SkColorType ct = SkColorType::kBGRA_8888_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_R5G6B5_UNORM_PACK16 |
| { |
| constexpr VkFormat format = VK_FORMAT_R5G6B5_UNORM_PACK16; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R5G6B5_UNORM_PACK16, Surface: kRGB_565_SkColorType |
| { |
| constexpr SkColorType ct = SkColorType::kRGB_565_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_R16G16B16A16_SFLOAT |
| { |
| constexpr VkFormat format = VK_FORMAT_R16G16B16A16_SFLOAT; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 2; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R16G16B16A16_SFLOAT, Surface: kRGBA_F16_SkColorType |
| { |
| constexpr SkColorType ct = SkColorType::kRGBA_F16_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| // Format: VK_FORMAT_R16G16B16A16_SFLOAT, Surface: kRGB_F16F16F16x_SkColorType |
| { |
| constexpr SkColorType ct = SkColorType::kRGB_F16F16F16x_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag; |
| ctInfo.fReadSwizzle = skgpu::Swizzle::RGB1(); |
| } |
| } |
| } |
| // Format: VK_FORMAT_R16_SFLOAT |
| { |
| constexpr VkFormat format = VK_FORMAT_R16_SFLOAT; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R16_SFLOAT, Surface: kAlpha_F16 |
| { |
| constexpr SkColorType ct = SkColorType::kA16_float_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| ctInfo.fReadSwizzle = skgpu::Swizzle("000r"); |
| ctInfo.fWriteSwizzle = skgpu::Swizzle("a000"); |
| } |
| } |
| } |
| // Format: VK_FORMAT_R8G8B8_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_R8G8B8_UNORM; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R8G8B8_UNORM, Surface: kRGB_888x |
| { |
| constexpr SkColorType ct = SkColorType::kRGB_888x_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| // This SkColorType is a lie, but we don't have a kRGB_888_SkColorType. The Vulkan |
| // format is 3 bpp so we must manualy convert to/from this and kRGB_888x when doing |
| // transfers. We signal this need for manual conversions in the |
| // supportedRead/WriteColorType calls. |
| ctInfo.fTransferColorType = SkColorType::kRGB_888x_SkColorType; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_R8G8_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_R8G8_UNORM; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R8G8_UNORM, Surface: kR8G8_unorm |
| { |
| constexpr SkColorType ct = SkColorType::kR8G8_unorm_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_A2B10G10R10_UNORM_PACK32 |
| { |
| constexpr VkFormat format = VK_FORMAT_A2B10G10R10_UNORM_PACK32; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 2; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_A2B10G10R10_UNORM_PACK32, Surface: kRGBA_1010102 |
| { |
| constexpr SkColorType ct = SkColorType::kRGBA_1010102_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| // Format: VK_FORMAT_A2B10G10R10_UNORM_PACK32, Surface: kRGB_101010x |
| { |
| constexpr SkColorType ct = SkColorType::kRGB_101010x_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag; |
| ctInfo.fReadSwizzle = skgpu::Swizzle::RGB1(); |
| } |
| } |
| } |
| // Format: VK_FORMAT_A2R10G10B10_UNORM_PACK32 |
| { |
| constexpr VkFormat format = VK_FORMAT_A2R10G10B10_UNORM_PACK32; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_A2R10G10B10_UNORM_PACK32, Surface: kBGRA_1010102 |
| { |
| constexpr SkColorType ct = SkColorType::kBGRA_1010102_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_B4G4R4A4_UNORM_PACK16 |
| { |
| constexpr VkFormat format = VK_FORMAT_B4G4R4A4_UNORM_PACK16; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_B4G4R4A4_UNORM_PACK16, Surface: kARGB_4444_SkColorType |
| { |
| constexpr SkColorType ct = SkColorType::kARGB_4444_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| // The color type is misnamed and really stores ABGR data, but there is no |
| // SkColorType that matches this actual ARGB VkFormat data. Swapping R and B when |
| // rendering into it has it match the reported transfer color type, but we have to |
| // swap R and B when sampling as well. This only works so long as we don't present |
| // textures of this format to a screen that would not know about this swap. |
| ctInfo.fReadSwizzle = skgpu::Swizzle::BGRA(); |
| ctInfo.fWriteSwizzle = skgpu::Swizzle::BGRA(); |
| } |
| } |
| } |
| |
| // Format: VK_FORMAT_R4G4B4A4_UNORM_PACK16 |
| { |
| constexpr VkFormat format = VK_FORMAT_R4G4B4A4_UNORM_PACK16; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R4G4B4A4_UNORM_PACK16, Surface: kARGB_4444_SkColorType |
| { |
| constexpr SkColorType ct = SkColorType::kARGB_4444_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_R8G8B8A8_SRGB |
| { |
| constexpr VkFormat format = VK_FORMAT_R8G8B8A8_SRGB; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R8G8B8A8_SRGB, Surface: kRGBA_8888_SRGB |
| { |
| constexpr SkColorType ct = SkColorType::kSRGBA_8888_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = SkColorType::kSRGBA_8888_SkColorType; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_B8G8R8A8_SRGB |
| { |
| constexpr VkFormat format = VK_FORMAT_B8G8R8A8_SRGB; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_B8G8R8A8_SRGB, Surface: kRGBA_8888_SRGB |
| { |
| constexpr SkColorType ct = SkColorType::kSRGBA_8888_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| // Since the B and R channels are swapped and there's no BGRA sRGB color type, |
| // just disable read/writes back to the CPU. |
| ctInfo.fTransferColorType = SkColorType::kUnknown_SkColorType; |
| ctInfo.fFlags = ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_R16_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_R16_UNORM; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R16_UNORM, Surface: kAlpha_16 |
| { |
| constexpr SkColorType ct = SkColorType::kA16_unorm_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| ctInfo.fReadSwizzle = skgpu::Swizzle("000r"); |
| ctInfo.fWriteSwizzle = skgpu::Swizzle("a000"); |
| } |
| } |
| } |
| // Format: VK_FORMAT_R16G16_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_R16G16_UNORM; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R16G16_UNORM, Surface: kRG_1616 |
| { |
| constexpr SkColorType ct = SkColorType::kR16G16_unorm_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_R16G16B16A16_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_R16G16B16A16_UNORM; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R16G16B16A16_UNORM, Surface: kRGBA_16161616 |
| { |
| constexpr SkColorType ct = SkColorType::kR16G16B16A16_unorm_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_R16G16_SFLOAT |
| { |
| constexpr VkFormat format = VK_FORMAT_R16G16_SFLOAT; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_R16G16_SFLOAT, Surface: kRG_F16 |
| { |
| constexpr SkColorType ct = SkColorType::kR16G16_float_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag | ColorTypeInfo::kRenderable_Flag; |
| } |
| } |
| } |
| // Format: VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM; |
| auto& info = this->getFormatInfo(format); |
| if (fSupportsYcbcrConversion) { |
| info.init(interface, physDev, properties, format); |
| } |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM, Surface: kRGB_888x |
| { |
| constexpr SkColorType ct = SkColorType::kRGB_888x_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag; |
| } |
| SkDEBUGCODE(info.fIsWrappedOnly = true;) |
| } |
| } |
| // Format: VK_FORMAT_G8_B8R8_2PLANE_420_UNORM |
| { |
| constexpr VkFormat format = VK_FORMAT_G8_B8R8_2PLANE_420_UNORM; |
| auto& info = this->getFormatInfo(format); |
| if (fSupportsYcbcrConversion) { |
| info.init(interface, physDev, properties, format); |
| } |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_G8_B8R8_2PLANE_420_UNORM, Surface: kRGB_888x |
| { |
| constexpr SkColorType ct = SkColorType::kRGB_888x_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag; |
| } |
| SkDEBUGCODE(info.fIsWrappedOnly = true;) |
| } |
| } |
| // Format: VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK |
| { |
| constexpr VkFormat format = VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK, Surface: kRGB_888x |
| { |
| constexpr SkColorType ct = SkColorType::kRGB_888x_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag; |
| } |
| } |
| } |
| |
| // Format: VK_FORMAT_BC1_RGB_UNORM_BLOCK |
| { |
| constexpr VkFormat format = VK_FORMAT_BC1_RGB_UNORM_BLOCK; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_BC1_RGB_UNORM_BLOCK, Surface: kRGB_888x |
| { |
| constexpr SkColorType ct = SkColorType::kRGB_888x_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag; |
| } |
| } |
| } |
| |
| // Format: VK_FORMAT_BC1_RGBA_UNORM_BLOCK |
| { |
| constexpr VkFormat format = VK_FORMAT_BC1_RGBA_UNORM_BLOCK; |
| auto& info = this->getFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.isTexturable(VK_IMAGE_TILING_OPTIMAL)) { |
| info.fColorTypeInfoCount = 1; |
| info.fColorTypeInfos = std::make_unique<ColorTypeInfo[]>(info.fColorTypeInfoCount); |
| int ctIdx = 0; |
| // Format: VK_FORMAT_BC1_RGBA_UNORM_BLOCK, Surface: kRGBA_8888 |
| { |
| constexpr SkColorType ct = SkColorType::kRGBA_8888_SkColorType; |
| auto& ctInfo = info.fColorTypeInfos[ctIdx++]; |
| ctInfo.fColorType = ct; |
| ctInfo.fTransferColorType = ct; |
| ctInfo.fFlags = ColorTypeInfo::kUploadData_Flag; |
| } |
| } |
| } |
| |
| //////////////////////////////////////////////////////////////////////////// |
| // Map SkColorType (used for creating Surfaces) to VkFormats. The order in which the formats are |
| // passed into the setColorType function indicates the priority in selecting which format we use |
| // for a given SkColorType. |
| typedef SkColorType ct; |
| |
| this->setColorType(ct::kAlpha_8_SkColorType, { VK_FORMAT_R8_UNORM }); |
| this->setColorType(ct::kRGB_565_SkColorType, { VK_FORMAT_R5G6B5_UNORM_PACK16 }); |
| this->setColorType(ct::kARGB_4444_SkColorType, { VK_FORMAT_R4G4B4A4_UNORM_PACK16, |
| VK_FORMAT_B4G4R4A4_UNORM_PACK16 }); |
| this->setColorType(ct::kRGBA_8888_SkColorType, { VK_FORMAT_R8G8B8A8_UNORM }); |
| this->setColorType(ct::kSRGBA_8888_SkColorType, { VK_FORMAT_R8G8B8A8_SRGB, |
| VK_FORMAT_B8G8R8A8_SRGB }); |
| this->setColorType(ct::kRGB_888x_SkColorType, { VK_FORMAT_R8G8B8_UNORM, |
| VK_FORMAT_R8G8B8A8_UNORM }); |
| this->setColorType(ct::kR8G8_unorm_SkColorType, { VK_FORMAT_R8G8_UNORM }); |
| this->setColorType(ct::kBGRA_8888_SkColorType, { VK_FORMAT_B8G8R8A8_UNORM }); |
| this->setColorType(ct::kRGBA_1010102_SkColorType, { VK_FORMAT_A2B10G10R10_UNORM_PACK32 }); |
| this->setColorType(ct::kBGRA_1010102_SkColorType, { VK_FORMAT_A2R10G10B10_UNORM_PACK32 }); |
| this->setColorType(ct::kRGB_101010x_SkColorType, { VK_FORMAT_A2B10G10R10_UNORM_PACK32 }); |
| this->setColorType(ct::kGray_8_SkColorType, { VK_FORMAT_R8_UNORM }); |
| this->setColorType(ct::kA16_float_SkColorType, { VK_FORMAT_R16_SFLOAT }); |
| this->setColorType(ct::kRGBA_F16_SkColorType, { VK_FORMAT_R16G16B16A16_SFLOAT }); |
| this->setColorType(ct::kRGB_F16F16F16x_SkColorType, { VK_FORMAT_R16G16B16A16_SFLOAT }); |
| this->setColorType(ct::kA16_unorm_SkColorType, { VK_FORMAT_R16_UNORM }); |
| this->setColorType(ct::kR16G16_unorm_SkColorType, { VK_FORMAT_R16G16_UNORM }); |
| this->setColorType(ct::kR16G16B16A16_unorm_SkColorType, { VK_FORMAT_R16G16B16A16_UNORM }); |
| this->setColorType(ct::kR16G16_float_SkColorType, { VK_FORMAT_R16G16_SFLOAT }); |
| } |
| |
| namespace { |
| void set_ds_flags_to_format(VkFormat& slot, VkFormat format) { |
| if (slot == VK_FORMAT_UNDEFINED) { |
| slot = format; |
| } |
| } |
| } // namespace |
| |
| void VulkanCaps::initDepthStencilFormatTable(const skgpu::VulkanInterface* interface, |
| VkPhysicalDevice physDev, |
| const VkPhysicalDeviceProperties& properties) { |
| static_assert(std::size(kDepthStencilVkFormats) == VulkanCaps::kNumDepthStencilVkFormats, |
| "Size of DepthStencilVkFormats array must match static value in header"); |
| |
| using DSFlags = SkEnumBitMask<DepthStencilFlags>; |
| constexpr DSFlags stencilFlags = DepthStencilFlags::kStencil; |
| constexpr DSFlags depthFlags = DepthStencilFlags::kDepth; |
| constexpr DSFlags dsFlags = DepthStencilFlags::kDepthStencil; |
| |
| std::fill_n(fDepthStencilFlagsToFormatTable, kNumDepthStencilFlags, VK_FORMAT_UNDEFINED); |
| // Format: VK_FORMAT_S8_UINT |
| { |
| constexpr VkFormat format = VK_FORMAT_S8_UINT; |
| auto& info = this->getDepthStencilFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.fFormatProperties.optimalTilingFeatures & |
| VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) { |
| set_ds_flags_to_format(fDepthStencilFlagsToFormatTable[stencilFlags.value()], format); |
| } |
| } |
| // Format: VK_FORMAT_D16_UNORM |
| { |
| // Qualcomm drivers will report OUT_OF_HOST_MEMORY when binding memory to a VkImage with |
| // D16_UNORM in a protected context. Using D32_SFLOAT succeeds, so clearly it's not actually |
| // out of memory. D16_UNORM appears to function correctly in unprotected contexts. |
| const bool disableD16InProtected = this->protectedSupport() && |
| kQualcomm_VkVendor == properties.vendorID; |
| if (!disableD16InProtected) { |
| constexpr VkFormat format = VK_FORMAT_D16_UNORM; |
| auto& info = this->getDepthStencilFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.fFormatProperties.optimalTilingFeatures & |
| VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) { |
| set_ds_flags_to_format(fDepthStencilFlagsToFormatTable[depthFlags.value()], format); |
| } |
| } |
| } |
| // Format: VK_FORMAT_D32_SFLOAT |
| { |
| constexpr VkFormat format = VK_FORMAT_D32_SFLOAT; |
| auto& info = this->getDepthStencilFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.fFormatProperties.optimalTilingFeatures & |
| VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) { |
| set_ds_flags_to_format(fDepthStencilFlagsToFormatTable[depthFlags.value()], format); |
| } |
| } |
| // Format: VK_FORMAT_D24_UNORM_S8_UINT |
| { |
| constexpr VkFormat format = VK_FORMAT_D24_UNORM_S8_UINT; |
| auto& info = this->getDepthStencilFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.fFormatProperties.optimalTilingFeatures & |
| VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) { |
| set_ds_flags_to_format(fDepthStencilFlagsToFormatTable[stencilFlags.value()], format); |
| set_ds_flags_to_format(fDepthStencilFlagsToFormatTable[depthFlags.value()], format); |
| set_ds_flags_to_format(fDepthStencilFlagsToFormatTable[dsFlags.value()], format); |
| } |
| } |
| // Format: VK_FORMAT_D32_SFLOAT_S8_UINT |
| { |
| constexpr VkFormat format = VK_FORMAT_D32_SFLOAT_S8_UINT; |
| auto& info = this->getDepthStencilFormatInfo(format); |
| info.init(interface, physDev, properties, format); |
| if (info.fFormatProperties.optimalTilingFeatures & |
| VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) { |
| set_ds_flags_to_format(fDepthStencilFlagsToFormatTable[stencilFlags.value()], format); |
| set_ds_flags_to_format(fDepthStencilFlagsToFormatTable[depthFlags.value()], format); |
| set_ds_flags_to_format(fDepthStencilFlagsToFormatTable[dsFlags.value()], format); |
| } |
| } |
| } |
| |
| void VulkanCaps::SupportedSampleCounts::initSampleCounts(const skgpu::VulkanInterface* interface, |
| VkPhysicalDevice physDev, |
| const VkPhysicalDeviceProperties& physProps, |
| VkFormat format, |
| VkImageUsageFlags usage) { |
| VkImageFormatProperties properties; |
| |
| VkResult result; |
| // VULKAN_CALL_RESULT requires a VulkanSharedContext for tracking DEVICE_LOST, but VulkanCaps |
| // are initialized before a VulkanSharedContext is available. The _NOCHECK variant only requires |
| // a VulkanInterface, so we can use that and log failures manually. |
| VULKAN_CALL_RESULT_NOCHECK(interface, |
| result, |
| GetPhysicalDeviceImageFormatProperties(physDev, |
| format, |
| VK_IMAGE_TYPE_2D, |
| VK_IMAGE_TILING_OPTIMAL, |
| usage, |
| 0, // createFlags |
| &properties)); |
| if (result != VK_SUCCESS) { |
| SKGPU_LOG_W("Vulkan call GetPhysicalDeviceImageFormatProperties failed: %d", result); |
| return; |
| } |
| |
| VkSampleCountFlags flags = properties.sampleCounts; |
| if (flags & VK_SAMPLE_COUNT_1_BIT) { |
| fSampleCounts.push_back(1); |
| } |
| if (kIntel_VkVendor == physProps.vendorID) { |
| // MSAA doesn't work well on Intel GPUs chromium:527565, chromium:983926 |
| return; |
| } |
| if (flags & VK_SAMPLE_COUNT_2_BIT) { |
| fSampleCounts.push_back(2); |
| } |
| if (flags & VK_SAMPLE_COUNT_4_BIT) { |
| fSampleCounts.push_back(4); |
| } |
| if (flags & VK_SAMPLE_COUNT_8_BIT) { |
| fSampleCounts.push_back(8); |
| } |
| if (flags & VK_SAMPLE_COUNT_16_BIT) { |
| fSampleCounts.push_back(16); |
| } |
| // Standard sample locations are not defined for more than 16 samples, and we don't need more |
| // than 16. Omit 32 and 64. |
| } |
| |
| bool VulkanCaps::SupportedSampleCounts::isSampleCountSupported(int requestedCount) const { |
| requestedCount = std::max(1, requestedCount); |
| for (int i = 0; i < fSampleCounts.size(); i++) { |
| if (fSampleCounts[i] == requestedCount) { |
| return true; |
| } else if (requestedCount < fSampleCounts[i]) { |
| return false; |
| } |
| } |
| return false; |
| } |
| |
| |
| namespace { |
| bool is_texturable(VkFormatFeatureFlags flags) { |
| return SkToBool(VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT & flags) && |
| SkToBool(VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT & flags); |
| } |
| |
| bool is_renderable(VkFormatFeatureFlags flags) { |
| return SkToBool(VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT & flags); |
| } |
| |
| bool is_storage(VkFormatFeatureFlags flags) { |
| return SkToBool(VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT & flags); |
| } |
| |
| bool is_transfer_src(VkFormatFeatureFlags flags) { |
| return SkToBool(VK_FORMAT_FEATURE_TRANSFER_SRC_BIT & flags); |
| } |
| |
| bool is_transfer_dst(VkFormatFeatureFlags flags) { |
| return SkToBool(VK_FORMAT_FEATURE_TRANSFER_DST_BIT & flags); |
| } |
| } |
| |
| void VulkanCaps::FormatInfo::init(const skgpu::VulkanInterface* interface, |
| VkPhysicalDevice physDev, |
| const VkPhysicalDeviceProperties& properties, |
| VkFormat format) { |
| fFormatProperties = {}; |
| VULKAN_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &fFormatProperties)); |
| |
| if (is_renderable(fFormatProperties.optimalTilingFeatures)) { |
| // We make all renderable images support being used as input attachment |
| VkImageUsageFlags usageFlags = VK_IMAGE_USAGE_TRANSFER_SRC_BIT | |
| VK_IMAGE_USAGE_TRANSFER_DST_BIT | |
| VK_IMAGE_USAGE_SAMPLED_BIT | |
| VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT | |
| VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT; |
| this->fSupportedSampleCounts.initSampleCounts(interface, physDev, properties, format, |
| usageFlags); |
| } |
| } |
| |
| bool VulkanCaps::FormatInfo::isTexturable(VkImageTiling imageTiling) const { |
| switch (imageTiling) { |
| case VK_IMAGE_TILING_OPTIMAL: |
| return is_texturable(fFormatProperties.optimalTilingFeatures); |
| case VK_IMAGE_TILING_LINEAR: |
| return is_texturable(fFormatProperties.linearTilingFeatures); |
| default: |
| return false; |
| } |
| SkUNREACHABLE; |
| } |
| |
| bool VulkanCaps::FormatInfo::isRenderable(VkImageTiling imageTiling, |
| uint32_t sampleCount) const { |
| if (!fSupportedSampleCounts.isSampleCountSupported(sampleCount)) { |
| return false; |
| } |
| switch (imageTiling) { |
| case VK_IMAGE_TILING_OPTIMAL: |
| return is_renderable(fFormatProperties.optimalTilingFeatures); |
| case VK_IMAGE_TILING_LINEAR: |
| return is_renderable(fFormatProperties.linearTilingFeatures); |
| default: |
| return false; |
| } |
| SkUNREACHABLE; |
| } |
| |
| bool VulkanCaps::FormatInfo::isStorage(VkImageTiling imageTiling) const { |
| switch (imageTiling) { |
| case VK_IMAGE_TILING_OPTIMAL: |
| return is_storage(fFormatProperties.optimalTilingFeatures); |
| case VK_IMAGE_TILING_LINEAR: |
| return is_storage(fFormatProperties.linearTilingFeatures); |
| default: |
| return false; |
| } |
| SkUNREACHABLE; |
| } |
| |
| bool VulkanCaps::FormatInfo::isTransferSrc(VkImageTiling imageTiling) const { |
| switch (imageTiling) { |
| case VK_IMAGE_TILING_OPTIMAL: |
| return is_transfer_src(fFormatProperties.optimalTilingFeatures); |
| case VK_IMAGE_TILING_LINEAR: |
| return is_transfer_src(fFormatProperties.linearTilingFeatures); |
| default: |
| return false; |
| } |
| SkUNREACHABLE; |
| } |
| |
| bool VulkanCaps::FormatInfo::isTransferDst(VkImageTiling imageTiling) const { |
| switch (imageTiling) { |
| case VK_IMAGE_TILING_OPTIMAL: |
| return is_transfer_dst(fFormatProperties.optimalTilingFeatures); |
| case VK_IMAGE_TILING_LINEAR: |
| return is_transfer_dst(fFormatProperties.linearTilingFeatures); |
| default: |
| return false; |
| } |
| SkUNREACHABLE; |
| } |
| |
| void VulkanCaps::setColorType(SkColorType colorType, std::initializer_list<VkFormat> formats) { |
| int idx = static_cast<int>(colorType); |
| for (auto it = formats.begin(); it != formats.end(); ++it) { |
| const auto& info = this->getFormatInfo(*it); |
| for (int i = 0; i < info.fColorTypeInfoCount; ++i) { |
| if (info.fColorTypeInfos[i].fColorType == colorType) { |
| fColorTypeToFormatTable[idx] = *it; |
| return; |
| } |
| } |
| } |
| } |
| |
| VkFormat VulkanCaps::getFormatFromColorType(SkColorType colorType) const { |
| int idx = static_cast<int>(colorType); |
| return fColorTypeToFormatTable[idx]; |
| } |
| |
| VulkanCaps::FormatInfo& VulkanCaps::getFormatInfo(VkFormat format) { |
| static_assert(std::size(kVkFormats) == VulkanCaps::kNumVkFormats, |
| "Size of VkFormats array must match static value in header"); |
| for (size_t i = 0; i < std::size(kVkFormats); ++i) { |
| if (kVkFormats[i] == format) { |
| return fFormatTable[i]; |
| } |
| } |
| static FormatInfo kInvalidFormat; |
| return kInvalidFormat; |
| } |
| |
| const VulkanCaps::FormatInfo& VulkanCaps::getFormatInfo(VkFormat format) const { |
| VulkanCaps* nonConstThis = const_cast<VulkanCaps*>(this); |
| return nonConstThis->getFormatInfo(format); |
| } |
| |
| void VulkanCaps::DepthStencilFormatInfo::init(const skgpu::VulkanInterface* interface, |
| VkPhysicalDevice physDev, |
| const VkPhysicalDeviceProperties& properties, |
| VkFormat format) { |
| fFormatProperties = {}; |
| VULKAN_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &fFormatProperties)); |
| |
| if (this->isDepthStencilSupported(fFormatProperties.optimalTilingFeatures)) { |
| VkImageUsageFlags usageFlags = VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT; |
| fSupportedSampleCounts.initSampleCounts(interface, physDev, properties, format, usageFlags); |
| } |
| } |
| |
| bool VulkanCaps::DepthStencilFormatInfo::isDepthStencilSupported(VkFormatFeatureFlags flags) const { |
| return SkToBool(VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT & flags); |
| } |
| |
| VulkanCaps::DepthStencilFormatInfo& VulkanCaps::getDepthStencilFormatInfo(VkFormat format) { |
| static_assert(std::size(kDepthStencilVkFormats) == VulkanCaps::kNumDepthStencilVkFormats, |
| "Size of VkFormats array must match static value in header"); |
| for (size_t i = 0; i < std::size(kDepthStencilVkFormats); ++i) { |
| if (kVkFormats[i] == format) { |
| return fDepthStencilFormatTable[i]; |
| } |
| } |
| static DepthStencilFormatInfo kInvalidFormat; |
| return kInvalidFormat; |
| } |
| |
| const VulkanCaps::DepthStencilFormatInfo& VulkanCaps::getDepthStencilFormatInfo(VkFormat format) |
| const { |
| VulkanCaps* nonConstThis = const_cast<VulkanCaps*>(this); |
| return nonConstThis->getDepthStencilFormatInfo(format); |
| } |
| |
| const Caps::ColorTypeInfo* VulkanCaps::getColorTypeInfo(SkColorType ct, |
| const TextureInfo& textureInfo) const { |
| const auto& vkInfo = TextureInfoPriv::Get<VulkanTextureInfo>(textureInfo); |
| VkFormat vkFormat = vkInfo.fFormat; |
| if (vkFormat == VK_FORMAT_UNDEFINED) { |
| // If VkFormat is undefined but there is a valid YCbCr conversion associated with the |
| // texture, then we know we are using an external format and can return color type |
| // info representative of external format color information. |
| return vkInfo.fYcbcrConversionInfo.isValid() ? &fExternalFormatColorTypeInfo : nullptr; |
| } |
| |
| const FormatInfo& info = this->getFormatInfo(vkFormat); |
| for (int i = 0; i < info.fColorTypeInfoCount; ++i) { |
| const ColorTypeInfo& ctInfo = info.fColorTypeInfos[i]; |
| if (ctInfo.fColorType == ct) { |
| return &ctInfo; |
| } |
| } |
| |
| return nullptr; |
| } |
| |
| bool VulkanCaps::onIsTexturable(const TextureInfo& texInfo) const { |
| return texInfo.isValid() && |
| this->isTexturable(TextureInfoPriv::Get<VulkanTextureInfo>(texInfo)); |
| } |
| |
| bool VulkanCaps::isTexturable(const VulkanTextureInfo& vkInfo) const { |
| // All images using external formats are required to be able to be sampled per Vulkan spec. |
| // https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkAndroidHardwareBufferFormatPropertiesANDROID.html#_description |
| if (vkInfo.fFormat == VK_FORMAT_UNDEFINED && vkInfo.fYcbcrConversionInfo.isValid()) { |
| return true; |
| } |
| |
| // Otherwise, we are working with a known format and can simply reference the format table info. |
| const FormatInfo& info = this->getFormatInfo(vkInfo.fFormat); |
| return info.isTexturable(vkInfo.fImageTiling); |
| } |
| |
| bool VulkanCaps::isRenderable(const TextureInfo& texInfo) const { |
| return texInfo.isValid() && |
| this->isRenderable(TextureInfoPriv::Get<VulkanTextureInfo>(texInfo)); |
| } |
| |
| bool VulkanCaps::isRenderable(const VulkanTextureInfo& vkInfo) const { |
| const FormatInfo& info = this->getFormatInfo(vkInfo.fFormat); |
| // All renderable vulkan textures within graphite must also support input attachment usage |
| return info.isRenderable(vkInfo.fImageTiling, vkInfo.fSampleCount) && |
| SkToBool(vkInfo.fImageUsageFlags & VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT); |
| } |
| |
| bool VulkanCaps::isStorage(const TextureInfo& texInfo) const { |
| if (!texInfo.isValid()) { |
| return false; |
| } |
| const auto& vkInfo = TextureInfoPriv::Get<VulkanTextureInfo>(texInfo); |
| |
| const FormatInfo& info = this->getFormatInfo(vkInfo.fFormat); |
| return info.isStorage(vkInfo.fImageTiling); |
| } |
| |
| bool VulkanCaps::isTransferSrc(const VulkanTextureInfo& vkInfo) const { |
| const FormatInfo& info = this->getFormatInfo(vkInfo.fFormat); |
| return info.isTransferSrc(vkInfo.fImageTiling); |
| } |
| |
| bool VulkanCaps::isTransferDst(const VulkanTextureInfo& vkInfo) const { |
| const FormatInfo& info = this->getFormatInfo(vkInfo.fFormat); |
| return info.isTransferDst(vkInfo.fImageTiling); |
| } |
| |
| bool VulkanCaps::supportsWritePixels(const TextureInfo& texInfo) const { |
| const auto& vkInfo = TextureInfoPriv::Get<VulkanTextureInfo>(texInfo); |
| |
| // Can't write if it needs a YCbCr sampler |
| if (VkFormatNeedsYcbcrSampler(vkInfo.fFormat)) { |
| return false; |
| } |
| |
| if (vkInfo.fSampleCount > 1) { |
| return false; |
| } |
| |
| if (!SkToBool(vkInfo.fImageUsageFlags & VK_IMAGE_USAGE_TRANSFER_DST_BIT)) { |
| return false; |
| } |
| |
| return true; |
| } |
| |
| bool VulkanCaps::supportsReadPixels(const TextureInfo& texInfo) const { |
| if (texInfo.isProtected() == Protected::kYes) { |
| return false; |
| } |
| |
| const auto& vkInfo = TextureInfoPriv::Get<VulkanTextureInfo>(texInfo); |
| |
| // Can't read if it needs a YCbCr sampler |
| if (VkFormatNeedsYcbcrSampler(vkInfo.fFormat)) { |
| return false; |
| } |
| |
| if (VkFormatIsCompressed(vkInfo.fFormat)) { |
| return false; |
| } |
| |
| if (vkInfo.fSampleCount > 1) { |
| return false; |
| } |
| |
| if (!SkToBool(vkInfo.fImageUsageFlags & VK_IMAGE_USAGE_TRANSFER_SRC_BIT)) { |
| return false; |
| } |
| |
| return true; |
| } |
| |
| std::pair<SkColorType, bool /*isRGBFormat*/> VulkanCaps::supportedWritePixelsColorType( |
| SkColorType dstColorType, |
| const TextureInfo& dstTextureInfo, |
| SkColorType srcColorType) const { |
| if (!dstTextureInfo.isValid()) { |
| return {kUnknown_SkColorType, false}; |
| } |
| const auto& vkInfo = TextureInfoPriv::Get<VulkanTextureInfo>(dstTextureInfo); |
| |
| // Can't write to YCbCr formats |
| // TODO: Can't write to external formats, either |
| if (VkFormatNeedsYcbcrSampler(vkInfo.fFormat)) { |
| return {kUnknown_SkColorType, false}; |
| } |
| |
| const FormatInfo& info = this->getFormatInfo(vkInfo.fFormat); |
| for (int i = 0; i < info.fColorTypeInfoCount; ++i) { |
| const auto& ctInfo = info.fColorTypeInfos[i]; |
| if (ctInfo.fColorType == dstColorType) { |
| return {ctInfo.fTransferColorType, vkInfo.fFormat == VK_FORMAT_R8G8B8_UNORM}; |
| } |
| } |
| |
| return {kUnknown_SkColorType, false}; |
| } |
| |
| std::pair<SkColorType, bool /*isRGBFormat*/> VulkanCaps::supportedReadPixelsColorType( |
| SkColorType srcColorType, |
| const TextureInfo& srcTextureInfo, |
| SkColorType dstColorType) const { |
| if (!srcTextureInfo.isValid()) { |
| return {kUnknown_SkColorType, false}; |
| } |
| const auto& vkInfo = TextureInfoPriv::Get<VulkanTextureInfo>(srcTextureInfo); |
| |
| // Can't read from YCbCr formats |
| // TODO: external formats? |
| if (VkFormatNeedsYcbcrSampler(vkInfo.fFormat)) { |
| return {kUnknown_SkColorType, false}; |
| } |
| |
| // TODO: handle compressed formats |
| if (VkFormatIsCompressed(vkInfo.fFormat)) { |
| SkASSERT(this->isTexturable(vkInfo)); |
| return {kUnknown_SkColorType, false}; |
| } |
| |
| const FormatInfo& info = this->getFormatInfo(vkInfo.fFormat); |
| for (int i = 0; i < info.fColorTypeInfoCount; ++i) { |
| const auto& ctInfo = info.fColorTypeInfos[i]; |
| if (ctInfo.fColorType == srcColorType) { |
| return {ctInfo.fTransferColorType, vkInfo.fFormat == VK_FORMAT_R8G8B8_UNORM}; |
| } |
| } |
| |
| return {kUnknown_SkColorType, false}; |
| } |
| |
| // 3 uint32s for the render step id, paint id, and write swizzle. |
| static constexpr int kVulkanGraphicsPipelineKeyHeaderData32Count = 3; |
| |
| UniqueKey VulkanCaps::makeGraphicsPipelineKey(const GraphicsPipelineDesc& pipelineDesc, |
| const RenderPassDesc& renderPassDesc) const { |
| UniqueKey pipelineKey; |
| { |
| VulkanRenderPass::Metadata rpMetadata{renderPassDesc, /*compatibleOnly=*/true}; |
| |
| // The uint32s needed for a RenderPass is variable number, so consult rpMetaData to |
| // determine how many to reserve. |
| UniqueKey::Builder builder( |
| &pipelineKey, |
| get_pipeline_domain(), |
| kVulkanGraphicsPipelineKeyHeaderData32Count + rpMetadata.keySize(), |
| "GraphicsPipeline"); |
| |
| int idx = 0; |
| // Add GraphicsPipelineDesc information |
| builder[idx++] = static_cast<uint32_t>(pipelineDesc.renderStepID()); |
| builder[idx++] = pipelineDesc.paintParamsID().asUInt(); |
| // Add RenderPass info relevant for pipeline creation that's not captured in RenderPass keys |
| builder[idx++] = renderPassDesc.fWriteSwizzle.asKey(); |
| // Add RenderPassDesc information |
| rpMetadata.addToKey(builder, idx); |
| |
| builder.finish(); |
| } |
| |
| return pipelineKey; |
| } |
| |
| bool VulkanCaps::extractGraphicsDescs(const UniqueKey& key, |
| GraphicsPipelineDesc* pipelineDesc, |
| RenderPassDesc* renderPassDesc, |
| const RendererProvider* rendererProvider) const { |
| SkASSERT(key.domain() == get_pipeline_domain()); |
| SkASSERT(key.dataSize() >= 4 * kVulkanGraphicsPipelineKeyHeaderData32Count); |
| |
| const uint32_t* rawKeyData = key.data(); |
| |
| SkASSERT(RenderStep::IsValidRenderStepID(rawKeyData[0])); |
| RenderStep::RenderStepID renderStepID = static_cast<RenderStep::RenderStepID>(rawKeyData[0]); |
| |
| SkDEBUGCODE(const RenderStep* renderStep = rendererProvider->lookup(renderStepID);) |
| *pipelineDesc = GraphicsPipelineDesc(renderStepID, UniquePaintParamsID(rawKeyData[1])); |
| SkASSERT(renderStep->performsShading() == pipelineDesc->paintParamsID().isValid()); |
| |
| *renderPassDesc = {}; |
| renderPassDesc->fWriteSwizzle = SwizzleCtorAccessor::Make(rawKeyData[2] & 0xFFFF); |
| |
| const uint32_t attachmentCount = rawKeyData[3] & 0xFF; |
| const uint32_t subpassCount = rawKeyData[3] >> 8; |
| SkASSERT(key.dataSize() == |
| 4 * (kVulkanGraphicsPipelineKeyHeaderData32Count + 1 + (attachmentCount + 1) / 2 + 1)); |
| SkASSERT(subpassCount == 1 || subpassCount == 2); |
| |
| SkASSERT(attachmentCount <= 3); |
| AttachmentDesc attachments[3] = {}; |
| |
| for (uint32_t i = 0; i < attachmentCount; i++) { |
| uint32_t desc = rawKeyData[4 + i / 2]; |
| if (i % 2 == 0) { |
| desc &= 0xFFFF; |
| } else if (i % 2 == 1) { |
| desc >>= 16; |
| } |
| |
| attachments[i].fFormat = static_cast<TextureFormat>(desc >> 8); |
| attachments[i].fLoadOp = static_cast<LoadOp>(desc >> 6 & 0x3); |
| attachments[i].fStoreOp = static_cast<StoreOp>(desc >> 4 & 0x3); |
| attachments[i].fSampleCount = desc & 0xF; |
| } |
| |
| const uint32_t attachmentIndices = rawKeyData[3 + (attachmentCount + 1) / 2 + 1]; |
| const uint32_t colorIndex = attachmentIndices & 0xFF; |
| const uint32_t resolveIndex = attachmentIndices >> 8 & 0xFF; |
| const uint32_t depthIndex = attachmentIndices >> 16 & 0xFF; |
| |
| if (colorIndex < 3) { |
| renderPassDesc->fColorAttachment = attachments[colorIndex]; |
| } |
| if (resolveIndex < 3) { |
| renderPassDesc->fColorResolveAttachment = attachments[resolveIndex]; |
| |
| const bool loadMSAAFromResolve = subpassCount == 2; |
| if (loadMSAAFromResolve) { |
| renderPassDesc->fColorResolveAttachment.fLoadOp = LoadOp::kLoad; |
| renderPassDesc->fColorResolveAttachment.fStoreOp = StoreOp::kStore; |
| } |
| } |
| if (depthIndex < 3) { |
| renderPassDesc->fDepthStencilAttachment = attachments[depthIndex]; |
| } |
| |
| renderPassDesc->fSampleCount = renderPassDesc->fColorAttachment.fSampleCount; |
| renderPassDesc->fDstReadStrategy = this->getDstReadStrategy(); |
| |
| return true; |
| } |
| |
| void VulkanCaps::buildKeyForTexture(SkISize dimensions, |
| const TextureInfo& info, |
| ResourceType type, |
| GraphiteResourceKey* key) const { |
| SkASSERT(!dimensions.isEmpty()); |
| |
| const auto& vkInfo = TextureInfoPriv::Get<VulkanTextureInfo>(info); |
| // We expect that the VkFormat enum is at most a 32-bit value. |
| static_assert(VK_FORMAT_MAX_ENUM == 0x7FFFFFFF); |
| // We should either be using a known VkFormat or have a valid ycbcr conversion. |
| SkASSERT(vkInfo.fFormat != VK_FORMAT_UNDEFINED || vkInfo.fYcbcrConversionInfo.isValid()); |
| |
| uint32_t format = static_cast<uint32_t>(vkInfo.fFormat); |
| uint32_t samples = SamplesToKey(info.numSamples()); |
| // We don't have to key the number of mip levels because it is inherit in the combination of |
| // isMipped and dimensions. |
| bool isMipped = info.mipmapped() == Mipmapped::kYes; |
| Protected isProtected = info.isProtected(); |
| |
| // Confirm all the below parts of the key can fit in a single uint32_t. The sum of the shift |
| // amounts in the asserts must be less than or equal to 32. vkInfo.fFlags will go into its |
| // own 32-bit block. |
| SkASSERT(samples < (1u << 3)); // sample key is first 3 bits |
| SkASSERT(static_cast<uint32_t>(isMipped) < (1u << 1)); // isMapped is 4th bit |
| SkASSERT(static_cast<uint32_t>(isProtected) < (1u << 1)); // isProtected is 5th bit |
| SkASSERT(vkInfo.fImageTiling < (1u << 1)); // imageTiling is 6th bit |
| SkASSERT(vkInfo.fSharingMode < (1u << 1)); // sharingMode is 7th bit |
| SkASSERT(vkInfo.fAspectMask < (1u << 11)); // aspectMask is bits 8 - 19 |
| SkASSERT(vkInfo.fImageUsageFlags < (1u << 12)); // imageUsageFlags are bits 20-32 |
| |
| // We need two uint32_ts for dimensions, 1 for format, and 2 for the rest of the information. |
| static constexpr int kNum32DataCntNoYcbcr = 2 + 1 + 2; |
| // YCbCr conversion needs 1 int for non-format flags, and a 64-bit format (external or regular). |
| static constexpr int kNum32DataCntYcbcr = 3; |
| int num32DataCnt = kNum32DataCntNoYcbcr; |
| |
| // If a texture w/ an external format is being used, that information must also be appended. |
| const VulkanYcbcrConversionInfo& ycbcrInfo = vkInfo.fYcbcrConversionInfo; |
| num32DataCnt += vkInfo.fYcbcrConversionInfo.isValid() ? kNum32DataCntYcbcr : 0; |
| |
| GraphiteResourceKey::Builder builder(key, type, num32DataCnt); |
| |
| int i = 0; |
| builder[i++] = dimensions.width(); |
| builder[i++] = dimensions.height(); |
| |
| if (ycbcrInfo.isValid()) { |
| SkASSERT(ycbcrInfo.fFormat != VK_FORMAT_UNDEFINED || ycbcrInfo.fExternalFormat != 0); |
| ImmutableSamplerInfo packedInfo = VulkanYcbcrConversion::ToImmutableSamplerInfo(ycbcrInfo); |
| |
| builder[i++] = packedInfo.fNonFormatYcbcrConversionInfo; |
| builder[i++] = (uint32_t) packedInfo.fFormat; |
| builder[i++] = (uint32_t) (packedInfo.fFormat >> 32); |
| } else { |
| builder[i++] = format; |
| } |
| |
| builder[i++] = (static_cast<uint32_t>(vkInfo.fFlags)); |
| builder[i++] = (samples << 0 ) | |
| (static_cast<uint32_t>(isMipped) << 3 ) | |
| (static_cast<uint32_t>(isProtected) << 4 ) | |
| (static_cast<uint32_t>(vkInfo.fImageTiling) << 5 ) | |
| (static_cast<uint32_t>(vkInfo.fSharingMode) << 6 ) | |
| (static_cast<uint32_t>(vkInfo.fAspectMask) << 7 ) | |
| (static_cast<uint32_t>(vkInfo.fImageUsageFlags) << 19); |
| SkASSERT(i == num32DataCnt); |
| } |
| |
| DstReadStrategy VulkanCaps::getDstReadStrategy() const { |
| // We know the graphite Vulkan backend does not support frame buffer fetch, so make sure it is |
| // not marked as supported and skip checking for it. |
| SkASSERT(!this->shaderCaps()->fFBFetchSupport); |
| |
| // All render target textures are expected to have VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT. |
| return DstReadStrategy::kReadFromInput; |
| } |
| |
| ImmutableSamplerInfo VulkanCaps::getImmutableSamplerInfo(const TextureInfo& textureInfo) const { |
| const skgpu::VulkanYcbcrConversionInfo& ycbcrConversionInfo = |
| TextureInfoPriv::Get<VulkanTextureInfo>(textureInfo).fYcbcrConversionInfo; |
| |
| if (ycbcrConversionInfo.isValid()) { |
| return VulkanYcbcrConversion::ToImmutableSamplerInfo(ycbcrConversionInfo); |
| } |
| |
| // If the YCbCr conversion for the TextureInfo is invalid, then return a default |
| // ImmutableSamplerInfo struct. |
| return {}; |
| } |
| |
| } // namespace skgpu::graphite |