Home
last modified time | relevance | path

Searched refs:formatProps (Results 1 – 9 of 9) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineBlendTests.cpp62 VkFormatProperties formatProps; in isSupportedBlendFormat() local
64 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps); in isSupportedBlendFormat()
66 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT) && in isSupportedBlendFormat()
67 (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT); in isSupportedBlendFormat()
DvktPipelineStencilTests.cpp61 VkFormatProperties formatProps; in isSupportedDepthStencilFormat() local
63 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps); in isSupportedDepthStencilFormat()
65 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0; in isSupportedDepthStencilFormat()
DvktPipelineDepthTests.cpp59 VkFormatProperties formatProps; in isSupportedDepthStencilFormat() local
61 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps); in isSupportedDepthStencilFormat()
63 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0u; in isSupportedDepthStencilFormat()
DvktPipelineVertexInputTests.cpp64 VkFormatProperties formatProps; in isSupportedVertexFormat() local
65 deMemset(&formatProps, 0, sizeof(VkFormatProperties)); in isSupportedVertexFormat()
66 …ceInterface().getPhysicalDeviceFormatProperties(context.getPhysicalDevice(), format, &formatProps); in isSupportedVertexFormat()
68 return (formatProps.bufferFeatures & VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT) != 0u; in isSupportedVertexFormat()
DvktPipelineImageUtil.cpp99 VkFormatProperties formatProps; in isSupportedSamplableFormat() local
100 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps); in isSupportedSamplableFormat()
102 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) != 0u; in isSupportedSamplableFormat()
DvktPipelineMultisampleTests.cpp660 VkFormatProperties formatProps; in isSupportedDepthStencilFormat() local
661 vki.getPhysicalDeviceFormatProperties(physDevice, format, &formatProps); in isSupportedDepthStencilFormat()
662 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0; in isSupportedDepthStencilFormat()
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
DvktFragmentOperationsEarlyFragmentTests.cpp461 VkFormatProperties formatProps; in isSupportedDepthStencilFormat() local
462 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps); in isSupportedDepthStencilFormat()
463 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0; in isSupportedDepthStencilFormat()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationOperation.cpp848 …const VkFormatProperties formatProps = getPhysicalDeviceFormatProperties(vki, physDevice, m_resou… in BlitImplementation() local
852 if ((formatProps.optimalTilingFeatures & requiredFlags) != requiredFlags) in BlitImplementation()
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp16578 VkImageFormatProperties formatProps; in TEST_F() local
16581 &formatProps); in TEST_F()
16582 if (formatProps.maxExtent.width < 100 || formatProps.maxExtent.height < 100) { in TEST_F()