Home
last modified time | relevance | path

Searched refs:deviceFeatures (Results 1 – 17 of 17) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesBase.cpp110 VkPhysicalDeviceFeatures deviceFeatures; in createDeviceSupportingQueues() local
111 instance.getPhysicalDeviceFeatures(physicalDevice, &deviceFeatures); in createDeviceSupportingQueues()
119 deviceInfo.pEnabledFeatures = &deviceFeatures; in createDeviceSupportingQueues()
DvktSparseResourcesBufferSparseBinding.cpp104 VkPhysicalDeviceFeatures deviceFeatures; in iterate() local
105 instance.getPhysicalDeviceFeatures(physicalDevice, &deviceFeatures); in iterate()
107 if (deviceFeatures.sparseBinding == false) in iterate()
DvktSparseResourcesBufferSparseResidency.cpp143 VkPhysicalDeviceFeatures deviceFeatures; in iterate() local
144 instance.getPhysicalDeviceFeatures(physicalDevice, &deviceFeatures); in iterate()
146 if (deviceFeatures.sparseResidencyBuffer == false) in iterate()
DvktSparseResourcesBufferMemoryAliasing.cpp158 …const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instance, physicalDevice… in iterate() local
160 if (deviceFeatures.sparseBinding == false) in iterate()
165 if (deviceFeatures.sparseResidencyAliased == false) in iterate()
DvktSparseResourcesMipmapSparseResidency.cpp131 …const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instance, physicalDevi… in iterate() local
138 if (deviceFeatures.sparseResidencyImage2D == false) in iterate()
144 if (deviceFeatures.sparseResidencyImage3D == false) in iterate()
DvktSparseResourcesImageSparseBinding.cpp120 …const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instance, physicalDevic… in iterate() local
122 if (deviceFeatures.sparseBinding == false) in iterate()
DvktSparseResourcesImageSparseResidency.cpp233 …const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instance, physicalDev… in iterate() local
239 if (deviceFeatures.sparseResidencyImage2D == false) in iterate()
245 if (deviceFeatures.sparseResidencyImage3D == false) in iterate()
/external/deqp/external/vulkancts/modules/vulkan/
DvktTestCase.cpp188 …sicalDeviceFeatures filterDefaultDeviceFeatures (const VkPhysicalDeviceFeatures& deviceFeatures);
226 …eatures DefaultDevice::filterDefaultDeviceFeatures (const VkPhysicalDeviceFeatures& deviceFeatures) in filterDefaultDeviceFeatures() argument
228 VkPhysicalDeviceFeatures enabledDeviceFeatures = deviceFeatures; in filterDefaultDeviceFeatures()
/external/deqp/external/vulkancts/framework/vulkan/
DvkQueryUtil.cpp221 bool isShaderStageSupported (const VkPhysicalDeviceFeatures& deviceFeatures, VkShaderStageFlagBits … in isShaderStageSupported() argument
224 return deviceFeatures.tessellationShader == VK_TRUE; in isShaderStageSupported()
226 return deviceFeatures.geometryShader == VK_TRUE; in isShaderStageSupported()
DvkQueryUtil.hpp56 bool isShaderStageSupported (const VkPhysicalDeviceFeatures& deviceFeatures, VkShader…
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
DvktDynamicStateVPTests.cpp237 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in ViewportArrayTestInstance() local
239 if (!deviceFeatures.multiViewport) in ViewportArrayTestInstance()
242 if (!deviceFeatures.geometryShader) in ViewportArrayTestInstance()
DvktDynamicStateRSTests.cpp605 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in LineWidthParamTestInstance() local
607 if (!deviceFeatures.wideLines) in LineWidthParamTestInstance()
DvktDynamicStateDSTests.cpp415 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in DepthBoundsParamTestInstance() local
417 if (!deviceFeatures.depthBounds) in DepthBoundsParamTestInstance()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiFeatureInfo.cpp678 tcu::TestStatus deviceFeatures (Context& context) in deviceFeatures() function
1663 VkImageCreateFlags getValidImageCreateFlags (const VkPhysicalDeviceFeatures& deviceFeatures, VkForm… in getValidImageCreateFlags() argument
1678 if (deviceFeatures.sparseBinding) in getValidImageCreateFlags()
1681 if (deviceFeatures.sparseResidencyAliased) in getValidImageCreateFlags()
1693 bool isRequiredImageParameterCombination (const VkPhysicalDeviceFeatures& deviceFeatures, in isRequiredImageParameterCombination() argument
1701 DE_UNREF(deviceFeatures); in isRequiredImageParameterCombination()
1718 …DE_ASSERT(deviceFeatures.sparseBinding || (createFlags & (VK_IMAGE_CREATE_SPARSE_BINDING_BIT|VK_IM… in isRequiredImageParameterCombination()
1719 …DE_ASSERT(deviceFeatures.sparseResidencyAliased || (createFlags & VK_IMAGE_CREATE_SPARSE_ALIASED_B… in isRequiredImageParameterCombination()
1780 const VkPhysicalDeviceFeatures& deviceFeatures = context.getDeviceFeatures(); in imageFormatProperties() local
1795 …const VkImageCreateFlags createFlagSet = getValidImageCreateFlags(deviceFeatures, format, support… in imageFormatProperties()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleTests.cpp911 VkPhysicalDeviceFeatures deviceFeatures; in MinSampleShadingInstance() local
913 …t.getInstanceInterface().getPhysicalDeviceFeatures(m_context.getPhysicalDevice(), &deviceFeatures); in MinSampleShadingInstance()
915 if (!deviceFeatures.sampleRateShading) in MinSampleShadingInstance()
1140 VkPhysicalDeviceFeatures deviceFeatures; in AlphaToOneInstance() local
1142 …ext.getInstanceInterface().getPhysicalDeviceFeatures(context.getPhysicalDevice(), &deviceFeatures); in AlphaToOneInstance()
1144 if (!deviceFeatures.alphaToOne) in AlphaToOneInstance()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktOpaqueTypeIndexingTests.cpp171 const VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in checkSupported() local
178 if (!deviceFeatures.shaderSampledImageArrayDynamicIndexing) in checkSupported()
183 if (!deviceFeatures.shaderUniformBufferArrayDynamicIndexing) in checkSupported()
188 if (!deviceFeatures.shaderStorageBufferArrayDynamicIndexing) in checkSupported()
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
DvktBindingShaderAccessTests.cpp90 void verifyDriverSupport(const vk::VkPhysicalDeviceFeatures& deviceFeatures, in verifyDriverSupport() argument
114 if (!deviceFeatures.vertexPipelineStoresAndAtomics) in verifyDriverSupport()
120 if (!deviceFeatures.fragmentStoresAndAtomics) in verifyDriverSupport()
729 const vk::VkPhysicalDeviceFeatures& deviceFeatures,
739 const vk::VkPhysicalDeviceFeatures& deviceFeatures,
757 const vk::VkPhysicalDeviceFeatures& deviceFeatures, in RenderInstanceShaders() argument
760 …addStage(vki, device, deviceFeatures, programCollection, "vertex", vk::VK_SHADER_STAGE_VERTEX_BIT… in RenderInstanceShaders()
761 …addStage(vki, device, deviceFeatures, programCollection, "tess_ctrl", vk::VK_SHADER_STAGE_TESSELLA… in RenderInstanceShaders()
762 …addStage(vki, device, deviceFeatures, programCollection, "tess_eval", vk::VK_SHADER_STAGE_TESSELLA… in RenderInstanceShaders()
763 …addStage(vki, device, deviceFeatures, programCollection, "geometry", vk::VK_SHADER_STAGE_GEOMETRY_… in RenderInstanceShaders()
[all …]