Home
last modified time | relevance | path

Searched refs:VK_MAKE_VERSION (Results 1 – 17 of 17) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/vulkan/util/
Dvk_util.c54 return VK_MAKE_VERSION(major, minor, patch); in vk_get_driver_version()
74 return VK_MAKE_VERSION(major, minor, patch); in vk_get_version_override()
/hardware/google/gfxstream/host/tests/
DSwapChainStateVk_unittest.cpp54 .applicationVersion = VK_MAKE_VERSION(1, 0, 0), in createInstance()
56 .engineVersion = VK_MAKE_VERSION(1, 0, 0), in createInstance()
DDisplayVk_unittest.cpp111 .applicationVersion = VK_MAKE_VERSION(1, 0, 0), in createInstance()
113 .engineVersion = VK_MAKE_VERSION(1, 0, 0), in createInstance()
DCompositorVk_unittest.cpp276 .applicationVersion = VK_MAKE_VERSION(1, 0, 0), in createInstance()
278 .engineVersion = VK_MAKE_VERSION(1, 0, 0), in createInstance()
/hardware/google/gfxstream/host/vulkan/
DVkDecoderInternalStructs.h176 uint32_t apiVersion = VK_MAKE_VERSION(1, 0, 0);
DVkCommonOperations.cpp646 VK_STRUCTURE_TYPE_APPLICATION_INFO, 0, "AEMU", 1, "AEMU", 1, VK_MAKE_VERSION(1, 0, 0), in createGlobalVkEmulation()
657 if (instanceVersion >= VK_MAKE_VERSION(1, 1, 0)) { in createGlobalVkEmulation()
659 appInfo.apiVersion = VK_MAKE_VERSION(1, 1, 0); in createGlobalVkEmulation()
688 if ((VK_SUCCESS == enumInstanceRes) && instanceVersion >= VK_MAKE_VERSION(1, 1, 0)) { in createGlobalVkEmulation()
694 if (appInfo.apiVersion < VK_MAKE_VERSION(1, 1, 0) && in createGlobalVkEmulation()
695 instanceVersion >= VK_MAKE_VERSION(1, 1, 0)) { in createGlobalVkEmulation()
697 appInfo.apiVersion = VK_MAKE_VERSION(1, 1, 0); in createGlobalVkEmulation()
1138 if (deviceVersion >= VK_MAKE_VERSION(1, 1, 0)) { in createGlobalVkEmulation()
DVkDecoderGlobalState.cpp177 static constexpr uint32_t kMaxSafeVersion = VK_MAKE_VERSION(1, 3, 0);
178 static constexpr uint32_t kMinVersion = VK_MAKE_VERSION(1, 0, 0);
906 uint32_t apiVersion = VK_MAKE_VERSION(1, 0, 0); in on_vkCreateInstance()
913 if (result == VK_SUCCESS && instanceVersion >= VK_MAKE_VERSION(1, 1, 0)) { in on_vkCreateInstance()
1231 if (instanceInfo->apiVersion >= VK_MAKE_VERSION(1, 1, 0) && in on_vkGetPhysicalDeviceFeatures2()
1232 physdevInfo->props.apiVersion >= VK_MAKE_VERSION(1, 1, 0)) { in on_vkGetPhysicalDeviceFeatures2()
1337 if (instanceInfo->apiVersion >= VK_MAKE_VERSION(1, 1, 0) && in on_vkGetPhysicalDeviceImageFormatProperties2()
1338 physdevInfo->props.apiVersion >= VK_MAKE_VERSION(1, 1, 0)) { in on_vkGetPhysicalDeviceImageFormatProperties2()
1416 if (instanceInfo->apiVersion >= VK_MAKE_VERSION(1, 1, 0) && in on_vkGetPhysicalDeviceFormatProperties2()
1417 physdevInfo->props.apiVersion >= VK_MAKE_VERSION(1, 1, 0)) { in on_vkGetPhysicalDeviceFormatProperties2()
[all …]
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_KHR_display_swapchain.adoc99 VK_MAKE_VERSION macro in the header file.
DVK_KHR_surface.adoc173 VK_MAKE_VERSION macro in the header file.
DVK_KHR_display.adoc298 VK_MAKE_VERSION macro in the header file.
DVK_KHR_swapchain.adoc666 VK_MAKE_VERSION macro in the header file.
/hardware/google/gfxstream/guest/mesa/src/vulkan/device-select-layer/
Ddevice_select_layer.c161 pCreateInfo->pApplicationInfo->apiVersion >= VK_MAKE_VERSION(1, 1, 0); in device_select_CreateInstance()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/
Dextensions.adoc223 [open,refpage='VK_MAKE_VERSION',desc='Construct an API version number',type='defines',xrefs='VkAppl…
225 dname:VK_MAKE_VERSION constructs an API version number.
227 include::{generated}/api/defines/VK_MAKE_VERSION.adoc[]
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/
Dregistry.adoc2343 #define VK_MAKE_VERSION(major, minor, patch) \
2478 #define VK_MAKE_VERSION(major, minor, patch) \
2482 #define VK_API_VERSION VK_MAKE_VERSION(0, 104, 0)
DChangeLog.adoc6075 * Cast arguments of dlink:VK_MAKE_VERSION macro to code:uint32_t to avoid
/hardware/google/gfxstream/guest/vulkan_enc/
DResourceTracker.cpp70 static constexpr uint32_t kDefaultApiVersion = VK_MAKE_VERSION(1, 1, 0);
/hardware/google/gfxstream/guest/mesa/include/vulkan/
Dvulkan_core.h78 #define VK_MAKE_VERSION(major, minor, patch) \ macro