HomeSort by relevance Sort by last modified time
    Searched defs:formatProps (Results 1 - 8 of 8) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleSampleLocationsExtTests.cpp 149 VkFormatProperties formatProps;
150 vki.getPhysicalDeviceFormatProperties(physDevice, format, &formatProps);
151 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0;
    [all...]
vktPipelineStencilExportTests.cpp 128 VkFormatProperties formatProps;
130 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
132 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0;
vktPipelineBlendTests.cpp 66 VkFormatProperties formatProps;
68 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
70 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT) &&
71 (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT);
    [all...]
vktPipelineDepthTests.cpp 61 VkFormatProperties formatProps;
63 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
65 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0u;
    [all...]
vktPipelineStencilTests.cpp 63 VkFormatProperties formatProps;
65 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
67 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0;
    [all...]
vktPipelineMultisampleTests.cpp 887 VkFormatProperties formatProps;
888 vki.getPhysicalDeviceFormatProperties(physDevice, format, &formatProps);
889 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsEarlyFragmentTests.cpp 210 VkFormatProperties formatProps;
211 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
212 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0;
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationOperation.cpp 851 const VkFormatProperties formatProps = getPhysicalDeviceFormatProperties(vki, physDevice, m_resource.getImage().format);
855 if ((formatProps.optimalTilingFeatures & requiredFlags) != requiredFlags)
    [all...]

Completed in 66 milliseconds