diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2022-10-04 13:06:32 -0500 |
---|---|---|
committer | Tom Hochstein <tom.hochstein@nxp.com> | 2022-10-11 16:38:16 -0500 |
commit | 705d5ca01245e1b0aa42d7380ad79ff1c3db8fcb (patch) | |
tree | e152773a2de4478bee18118f56c86d7de22007b9 /recipes-downgrade/vulkan/vulkan-tools_1.2.182.0.bb | |
parent | 1b9f6007753bcd6e55fcff1f8b22c96c827b9e83 (diff) | |
download | meta-freescale-705d5ca01245e1b0aa42d7380ad79ff1c3db8fcb.tar.gz |
vulkan: Downgrade to 1.2.182.0 for i.MX GPU
i.MX GPU drivers work with an older version of vulkan, so add the older
recipes.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-downgrade/vulkan/vulkan-tools_1.2.182.0.bb')
-rw-r--r-- | recipes-downgrade/vulkan/vulkan-tools_1.2.182.0.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes-downgrade/vulkan/vulkan-tools_1.2.182.0.bb b/recipes-downgrade/vulkan/vulkan-tools_1.2.182.0.bb new file mode 100644 index 00000000..242b8973 --- /dev/null +++ b/recipes-downgrade/vulkan/vulkan-tools_1.2.182.0.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;protocol=https;branch=sdk-1.2.182" | ||
10 | SRCREV = "9d3305731c3be8de05c9f223a79959d448506a37" | ||
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+)+)" | ||