diff options
Diffstat (limited to 'recipes-graphics/imx-gpu-apitrace')
-rw-r--r-- | recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_9.0.0.bb | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_9.0.0.bb b/recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_9.0.0.bb index 2f8029a4..65ce9cd5 100644 --- a/recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_9.0.0.bb +++ b/recipes-graphics/imx-gpu-apitrace/imx-gpu-apitrace_9.0.0.bb | |||
@@ -5,19 +5,28 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=aeb969185a143c3c25130bc2c3ef9a50" | |||
5 | DEPENDS = "imx-gpu-viv zlib libpng procps" | 5 | DEPENDS = "imx-gpu-viv zlib libpng procps" |
6 | 6 | ||
7 | SRC_URI = "git://source.codeaurora.org/external/imx/apitrace-imx.git;protocol=https;branch=imx_9.0" | 7 | SRC_URI = "git://source.codeaurora.org/external/imx/apitrace-imx.git;protocol=https;branch=imx_9.0" |
8 | SRCREV = "fed74f6f84cb4f48ddace4306c9bf90bf7a9a967" | 8 | SRCREV = "c50e6a954e44998f2e3793a8de863e961f8008c6" |
9 | 9 | ||
10 | S = "${WORKDIR}/git" | 10 | S = "${WORKDIR}/git" |
11 | 11 | ||
12 | inherit cmake pkgconfig perlnative python3native | 12 | inherit cmake pkgconfig perlnative python3native |
13 | 13 | ||
14 | PACKAGECONFIG ??= "egl" | 14 | PACKAGECONFIG_BACKEND_mx6 = " \ |
15 | PACKAGECONFIG_append = \ | 15 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'waffle', \ |
16 | "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', \ | 16 | bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', \ |
17 | bb.utils.contains('DISTRO_FEATURES', 'x11', ' x11', \ | 17 | '', d), d)} \ |
18 | '', d), d)}" | 18 | " |
19 | PACKAGECONFIG_append_mx8 = " waffle" | 19 | PACKAGECONFIG_BACKEND_mx7 = "${PACKAGECONFIG_BACKEND_mx6}" |
20 | PACKAGECONFIG_append_imxgpu2d = " vivante" | 20 | PACKAGECONFIG_BACKEND_mx8 = "waffle" |
21 | |||
22 | PACKAGECONFIG_GPU2D = "" | ||
23 | PACKAGECONFIG_GPU2D_imxgpu2d = "vivante" | ||
24 | |||
25 | PACKAGECONFIG ??= " \ | ||
26 | egl \ | ||
27 | ${PACKAGECONFIG_BACKEND} \ | ||
28 | ${PACKAGECONFIG_GPU2D} \ | ||
29 | " | ||
21 | 30 | ||
22 | PACKAGECONFIG[egl] = "-DENABLE_EGL=ON,-DENABLE_EGL=OFF,virtual/egl" | 31 | PACKAGECONFIG[egl] = "-DENABLE_EGL=ON,-DENABLE_EGL=OFF,virtual/egl" |
23 | PACKAGECONFIG[gui] = "-DENABLE_GUI=ON,-DENABLE_GUI=OFF" | 32 | PACKAGECONFIG[gui] = "-DENABLE_GUI=ON,-DENABLE_GUI=OFF" |