Home
last modified time | relevance | path

Searched refs:sparseBinding (Results 1 - 25 of 50) sorted by relevance

12

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sc/
H A DvktSafetyCriticalApiTests.cpp213 if (context.getDeviceFeatures().sparseBinding != VK_FALSE) in forbiddenDeviceFeatures()
214 TCU_THROW(TestError, "VkPhysicalDeviceFeatures::sparseBinding must be VK_FALSE"); in forbiddenDeviceFeatures()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/
H A DvktTestCase.cpp280 const deUint32 numQueues = (enabledFeatures.features.sparseBinding && (queueIndex != sparseQueueIndex)) ? 2 : 1; in createDefaultDevice()
589 , m_sparseQueueFamilyIndex (m_deviceFeatures.getCoreFeatures2().features.sparseBinding ? findQueueFamilyIndexWithCaps(m_instanceInterface, m_physicalDevice, VK_QUEUE_SPARSE_BINDING_BIT) : 0) in DefaultDevice()
622 if (!m_deviceFeatures.getCoreFeatures2().features.sparseBinding) in getSparseQueue()
893 DEVICE_CORE_FEATURE_ENTRY(DEVICE_CORE_FEATURE_SPARSE_BINDING , sparseBinding ),
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/
H A DvktTestCase.cpp267 const deUint32 numQueues = (enabledFeatures.features.sparseBinding && (queueIndex != sparseQueueIndex)) ? 2 : 1; in createDefaultDevice()
531 , m_sparseQueueFamilyIndex (m_deviceFeatures.getCoreFeatures2().features.sparseBinding ? findQueueFamilyIndexWithCaps(m_instanceInterface, m_physicalDevice, VK_QUEUE_SPARSE_BINDING_BIT) : 0) in DefaultDevice()
560 if (!m_deviceFeatures.getCoreFeatures2().features.sparseBinding) in getSparseQueue()
830 DEVICE_CORE_FEATURE_ENTRY(DEVICE_CORE_FEATURE_SPARSE_BINDING , sparseBinding ),
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/
H A DvktSafetyCriticalApiTests.cpp213 if (context.getDeviceFeatures().sparseBinding != VK_FALSE) in forbiddenDeviceFeatures()
214 TCU_THROW(TestError, "VkPhysicalDeviceFeatures::sparseBinding must be VK_FALSE"); in forbiddenDeviceFeatures()
/third_party/vk-gl-cts/external/amber/src/samples/
H A Dconfig_helper_vulkan.cc194 } else if (name == "sparseBinding") { in NamesToVulkanFeatures()
195 features->sparseBinding = VK_TRUE; in NamesToVulkanFeatures()
460 if (available_features.sparseBinding == VK_FALSE && in AreAllRequiredFeaturesSupported()
461 required_features.sparseBinding == VK_TRUE) { in AreAllRequiredFeaturesSupported()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiBufferTests.cpp146 if ((m_testCase.flags & VK_BUFFER_CREATE_SPARSE_BINDING_BIT) && !physicalDeviceFeatures.sparseBinding) in checkSupport()
759 if ((params.flags & VK_BUFFER_CREATE_SPARSE_BINDING_BIT) && !physicalDeviceFeatures.sparseBinding) in checkMaintenance4Support()
H A DvktApiBufferMemoryRequirementsTests.cpp406 if (createBits.contains(VK_BUFFER_CREATE_SPARSE_BINDING_BIT) && (VK_FALSE == features.sparseBinding)) in checkSupport()
H A DvktApiFeatureInfo.cpp277 { LIMIT(sparseAddressSpaceSize), FEATURE(sparseBinding), 0, 0, 0, 0.0f }, in validateFeatureLimits()
761 { PN(features.sparseBinding), PN(limits.sparseAddressSpaceSize), LIM_MIN_DEVSIZE((1ull<<31)) }, in validateLimits12()
2701 OFFSET_TABLE_ENTRY(VkPhysicalDeviceFeatures, sparseBinding), in deviceFeatures()
4146 if (deviceFeatures.sparseBinding) in getValidImageCreateFlags()
4198 DE_ASSERT(deviceFeatures.sparseBinding || (createFlags & (VK_IMAGE_CREATE_SPARSE_BINDING_BIT|VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT)) == 0); in isRequiredImageParameterCombination()
6586 if (!context.getDeviceFeatures().sparseBinding) in sparseImageFormatProperties2()
6593 TCU_FAIL("Claimed format properties inconsistent with overall sparseBinding feature"); in sparseImageFormatProperties2()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiBufferTests.cpp147 if ((m_testCase.flags & VK_BUFFER_CREATE_SPARSE_BINDING_BIT) && !physicalDeviceFeatures.sparseBinding) in checkSupport()
762 if ((params.flags & VK_BUFFER_CREATE_SPARSE_BINDING_BIT) && !physicalDeviceFeatures.sparseBinding) in checkMaintenance4Support()
H A DvktApiBufferMemoryRequirementsTests.cpp404 if (createBits.contains(VK_BUFFER_CREATE_SPARSE_BINDING_BIT) && (VK_FALSE == features.sparseBinding)) in checkSupport()
H A DvktApiFeatureInfo.cpp277 { LIMIT(sparseAddressSpaceSize), FEATURE(sparseBinding), 0, 0, 0, 0.0f }, in validateFeatureLimits()
752 { PN(features.sparseBinding), PN(limits.sparseAddressSpaceSize), LIM_MIN_DEVSIZE((1ull<<31)) }, in validateLimits12()
2726 OFFSET_TABLE_ENTRY(VkPhysicalDeviceFeatures, sparseBinding), in deviceFeatures()
4151 if (deviceFeatures.sparseBinding) in getValidImageCreateFlags()
4203 DE_ASSERT(deviceFeatures.sparseBinding || (createFlags & (VK_IMAGE_CREATE_SPARSE_BINDING_BIT|VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT)) == 0); in isRequiredImageParameterCombination()
6591 if (!context.getDeviceFeatures().sparseBinding) in sparseImageFormatProperties2()
6598 TCU_FAIL("Claimed format properties inconsistent with overall sparseBinding feature"); in sparseImageFormatProperties2()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesTestsUtil.cpp948 if (!deviceFeatures.sparseBinding)
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmComputeShaderCase.cpp410 assert(m_shaderSpec.requestedVulkanFeatures.coreFeatures.sparseBinding == DE_FALSE); in checkSupport()
H A DvktSpvAsmUtils.cpp104 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, sparseBinding) in isCoreFeaturesSupported()
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Ddevice.cc323 if (feature == "sparseBinding") { in AreAllRequiredFeaturesSupported()
324 if (available_features.sparseBinding == VK_FALSE) in AreAllRequiredFeaturesSupported()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sparse_resources/
H A DvktSparseResourcesTestsUtil.cpp945 if (!deviceFeatures.sparseBinding)
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H A DvktSpvAsmComputeShaderCase.cpp410 assert(m_shaderSpec.requestedVulkanFeatures.coreFeatures.sparseBinding == DE_FALSE); in checkSupport()
H A DvktSpvAsmUtils.cpp104 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, sparseBinding) in isCoreFeaturesSupported()
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_device.c647 .sparseBinding = false, in pvr_GetPhysicalDeviceFeatures2()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
H A DvktGlobalPriorityQueueTests.cpp501 const VkBool32 sparseEnabled = devFeatures.features.sparseBinding & devFeatures.features.sparseResidencyBuffer & devFeatures.features.sparseResidencyImage2D; in checkSupport()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkNullDriver.cpp953 pFeatures->sparseBinding = VK_TRUE; in getPhysicalDeviceFeatures()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktGlobalPriorityQueueTests.cpp548 const VkBool32 sparseEnabled = devFeatures.features.sparseBinding & devFeatures.features.sparseResidencyBuffer & devFeatures.features.sparseResidencyImage2D; in checkSupport()
/third_party/vulkan-loader/tests/
H A Dloader_phys_dev_inst_ext_tests.cpp401 feats.sparseBinding = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
452 feats1.sparseBinding == feats2.features.sparseBinding && in CompareFeatures()
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_device.c687 .sparseBinding = false, in tu_GetPhysicalDeviceFeatures2()
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dv_device.c1141 .sparseBinding = false, in v3dv_GetPhysicalDeviceFeatures()

Completed in 71 milliseconds

12