Home
last modified time | relevance | path

Searched refs:format_props (Results 1 – 5 of 5) sorted by relevance

/external/vulkan-validation-layers/tests/
Dvktestframeworkandroid.cpp31 VkFormatProperties format_props; in GetFormat() local
32 …GetPhysicalDeviceFormatProperties(device->phy().handle(), VK_FORMAT_B8G8R8A8_UNORM, &format_props); in GetFormat()
33 if (format_props.linearTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT || in GetFormat()
34 format_props.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT) { in GetFormat()
37 …GetPhysicalDeviceFormatProperties(device->phy().handle(), VK_FORMAT_R8G8B8A8_UNORM, &format_props); in GetFormat()
38 if (format_props.linearTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT || in GetFormat()
39 format_props.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT) { in GetFormat()
Dvktestframework.cpp211 VkFormatProperties format_props; in GetFormat() local
213 …GetPhysicalDeviceFormatProperties(device->phy().handle(), VK_FORMAT_B8G8R8A8_UNORM, &format_props); in GetFormat()
214 if (format_props.linearTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT || in GetFormat()
215 format_props.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT) { in GetFormat()
218 …GetPhysicalDeviceFormatProperties(device->phy().handle(), VK_FORMAT_R8G8B8A8_UNORM, &format_props); in GetFormat()
219 if (format_props.linearTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT || in GetFormat()
220 format_props.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT) { in GetFormat()
Dlayer_validation_tests.cpp108 VkFormatProperties format_props; in FindSupportedDepthStencilFormat() local
109 vkGetPhysicalDeviceFormatProperties(phy, ds_formats[i], &format_props); in FindSupportedDepthStencilFormat()
111 if (format_props.optimalTilingFeatures & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) { in FindSupportedDepthStencilFormat()
123 VkFormatProperties format_props; in ImageFormatIsSupported() local
124 vkGetPhysicalDeviceFormatProperties(phy, format, &format_props); in ImageFormatIsSupported()
126 …(VK_IMAGE_TILING_OPTIMAL == tiling ? format_props.optimalTilingFeatures : format_props.linearTilin… in ImageFormatIsSupported()
132 VkFormatProperties format_props; in ImageFormatAndFeaturesSupported() local
133 vkGetPhysicalDeviceFormatProperties(phy, format, &format_props); in ImageFormatAndFeaturesSupported()
135 …(VK_IMAGE_TILING_OPTIMAL == tiling ? format_props.optimalTilingFeatures : format_props.linearTilin… in ImageFormatAndFeaturesSupported()
3776 VkFormatProperties format_props = m_device->format_properties(input_attribs.format); in TEST_F() local
[all …]
/external/libkmsxx/utils/
Dkmsprint.cpp223 static vector<string> format_props(DrmPropObject* o) in format_props() function
398 for (string str : format_props(ob)) in print_as_list()
416 e1.lines = format_props(conn); in print_as_tree()
423 e2.lines = format_props(enc); in print_as_tree()
429 e3.lines = format_props(crtc); in print_as_tree()
445 e4.lines = format_props(plane); in print_as_tree()
/external/mesa3d/src/amd/vulkan/
Dradv_formats.c1046 VkFormatProperties format_props; in radv_get_image_format_properties() local
1054 &format_props); in radv_get_image_format_properties()
1056 format_feature_flags = format_props.linearTilingFeatures; in radv_get_image_format_properties()
1058 format_feature_flags = format_props.optimalTilingFeatures; in radv_get_image_format_properties()