Searched refs:formatProps (Results 1 – 9 of 9) sorted by relevance
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineBlendTests.cpp | 62 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()
|
D | vktPipelineStencilTests.cpp | 61 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()
|
D | vktPipelineDepthTests.cpp | 59 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()
|
D | vktPipelineVertexInputTests.cpp | 64 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()
|
D | vktPipelineImageUtil.cpp | 99 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()
|
D | vktPipelineMultisampleTests.cpp | 660 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/ |
D | vktFragmentOperationsEarlyFragmentTests.cpp | 461 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/ |
D | vktSynchronizationOperation.cpp | 848 …const VkFormatProperties formatProps = getPhysicalDeviceFormatProperties(vki, physDevice, m_resou… in BlitImplementation() local 852 if ((formatProps.optimalTilingFeatures & requiredFlags) != requiredFlags) in BlitImplementation()
|
/external/vulkan-validation-layers/tests/ |
D | layer_validation_tests.cpp | 16578 VkImageFormatProperties formatProps; in TEST_F() local 16581 &formatProps); in TEST_F() 16582 if (formatProps.maxExtent.width < 100 || formatProps.maxExtent.height < 100) { in TEST_F()
|