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

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
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...]
vktPipelineVertexInputTests.cpp 64 VkFormatProperties formatProps;
65 deMemset(&formatProps, 0, sizeof(VkFormatProperties));
66 context.getInstanceInterface().getPhysicalDeviceFormatProperties(context.getPhysicalDevice(), format, &formatProps);
68 return (formatProps.bufferFeatures & VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT) != 0u;
    [all...]
vktPipelineDepthTests.cpp 59 VkFormatProperties formatProps;
61 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
63 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0u;
    [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...]
vktPipelineImageUtil.cpp 99 VkFormatProperties formatProps;
100 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
102 return (formatProps.optimalTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) != 0u;
    [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 98 milliseconds