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

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineDepthTests.cpp 59 VkFormatProperties formatProps;
61 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
63 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0u;
    [all...]
vktPipelineBlendTests.cpp 62 VkFormatProperties formatProps;
64 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
66 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT) &&
67 (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT);
    [all...]
vktPipelineEarlyFragmentTests.cpp 709 VkFormatProperties formatProps;
710 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
711 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0;
    [all...]
vktPipelineStencilTests.cpp 61 VkFormatProperties formatProps;
63 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
65 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.cpp 68 VkFormatProperties formatProps;
70 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
72 return (formatProps.linearTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) != 0u;
77 VkFormatProperties formatProps;
79 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
81 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) != 0u;
    [all...]

Completed in 609 milliseconds