diff options
author | Tomasz Owczarek <tomasz.owczarek@arm.com> | 2021-11-09 16:53:02 +0000 |
---|---|---|
committer | Matthew Netsch <quic_mnetsch@quicinc.com> | 2021-11-19 20:11:36 +0000 |
commit | 41af69a0c0d93b2f1c0c11b3f7310281fbfb1419 (patch) | |
tree | 6b8bc3ee1f20467813461d27ec764d6d45e8df97 /external/vulkancts | |
parent | 8e44f98e55e05090b24d5c2e941d013cefee56e6 (diff) | |
download | VK-GL-CTS-41af69a0c0d93b2f1c0c11b3f7310281fbfb1419.tar.gz VK-GL-CTS-41af69a0c0d93b2f1c0c11b3f7310281fbfb1419.tar.bz2 VK-GL-CTS-41af69a0c0d93b2f1c0c11b3f7310281fbfb1419.zip |
Disable depth clamp for graphics pipeline creation tests.
Not all GPUs does support depth clamp feature.
Disable depth clamp in pipeline creation tests as it's not used
by tests itself and isn't required to test pipeline creation.
Affects:
dEQP-VK.pipeline.creation_cache_control.graphics_pipelines.*
Components: Vulkan
VK-GL-CTS issue: 3297
Change-Id: I59ed04bfcd1e5fc4b79dae31e254ff48c3410a5b
Diffstat (limited to 'external/vulkancts')
-rw-r--r-- | external/vulkancts/modules/vulkan/pipeline/vktPipelineCreationCacheControlTests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/vulkancts/modules/vulkan/pipeline/vktPipelineCreationCacheControlTests.cpp b/external/vulkancts/modules/vulkan/pipeline/vktPipelineCreationCacheControlTests.cpp index 8e2673f3a..c1c1bc9f8 100644 --- a/external/vulkancts/modules/vulkan/pipeline/vktPipelineCreationCacheControlTests.cpp +++ b/external/vulkancts/modules/vulkan/pipeline/vktPipelineCreationCacheControlTests.cpp @@ -608,7 +608,7 @@ VkGraphicsPipelineCreateInfo getPipelineCreateInfoCommon() VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO, // sType DE_NULL, // pNext VkPipelineRasterizationStateCreateFlags{}, // flags - VK_TRUE, // depthClampEnable + VK_FALSE, // depthClampEnable VK_TRUE, // rasterizerDiscardEnable VK_POLYGON_MODE_FILL, // polygonMode VK_CULL_MODE_NONE, // cullMode |