diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-10-27 22:15:56 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-29 16:28:35 +0100 |
commit | 491c56d06c557a9f5fcfb12b8df8ee9f929ab795 (patch) | |
tree | a25a632a6d1ed8e008f09ce95aadd57fcd874f3c /meta/recipes-graphics/vulkan/vulkan-tools_1.3.224.1.bb | |
parent | 4515da64cc0dc0e1bb8daf6023484a50c03bddd4 (diff) | |
download | poky-491c56d06c557a9f5fcfb12b8df8ee9f929ab795.tar.gz |
vulkan: update 1.3.216.0 -> 1.3.224.1
(From OE-Core rev: c9d245a78a22542ea4fb063370974ac1c85be74d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/vulkan/vulkan-tools_1.3.224.1.bb')
-rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-tools_1.3.224.1.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-graphics/vulkan/vulkan-tools_1.3.224.1.bb b/meta/recipes-graphics/vulkan/vulkan-tools_1.3.224.1.bb new file mode 100644 index 0000000000..bed10afef1 --- /dev/null +++ b/meta/recipes-graphics/vulkan/vulkan-tools_1.3.224.1.bb | |||
@@ -0,0 +1,32 @@ | |||
1 | SUMMARY = "Vulkan Utilities and Tools" | ||
2 | DESCRIPTION = "Assist development by enabling developers to verify their applications correct use of the Vulkan API." | ||
3 | HOMEPAGE = "https://www.khronos.org/vulkan/" | ||
4 | BUGTRACKER = "https://github.com/KhronosGroup/Vulkan-Tools" | ||
5 | SECTION = "libs" | ||
6 | |||
7 | LICENSE = "Apache-2.0" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" | ||
9 | SRC_URI = "git://github.com/KhronosGroup/Vulkan-Tools.git;branch=master;protocol=https" | ||
10 | SRCREV = "497f232680b046db34ba9e9da065e6303a125851" | ||
11 | |||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | inherit cmake features_check | ||
15 | ANY_OF_DISTRO_FEATURES = "x11 wayland" | ||
16 | REQUIRED_DISTRO_FEATURES = "vulkan" | ||
17 | |||
18 | DEPENDS += "vulkan-headers vulkan-loader" | ||
19 | |||
20 | EXTRA_OECMAKE = "\ | ||
21 | -DBUILD_TESTS=OFF \ | ||
22 | -DBUILD_CUBE=OFF \ | ||
23 | -DPYTHON_EXECUTABLE=${HOSTTOOLS_DIR}/python3 \ | ||
24 | " | ||
25 | |||
26 | # must choose x11 or wayland or both | ||
27 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}" | ||
28 | |||
29 | PACKAGECONFIG[x11] = "-DBUILD_WSI_XLIB_SUPPORT=ON -DBUILD_WSI_XCB_SUPPORT=ON, -DBUILD_WSI_XLIB_SUPPORT=OFF -DBUILD_WSI_XCB_SUPPORT=OFF, libxcb libx11 libxrandr" | ||
30 | PACKAGECONFIG[wayland] = "-DBUILD_WSI_WAYLAND_SUPPORT=ON, -DBUILD_WSI_WAYLAND_SUPPORT=OFF, wayland" | ||
31 | |||
32 | UPSTREAM_CHECK_GITTAGREGEX = "sdk-(?P<pver>\d+(\.\d+)+)" | ||