mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
virglrenderer: upgrade 0.10.4 -> 1.0.0
venus (virtual vulkan support) is no longer experimental. (From OE-Core rev: 21ca5d6babc3d668044296b0fbbc3e101f7ce5bd) 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>
This commit is contained in:
committed by
Richard Purdie
parent
d2eade15b7
commit
7e545ebf2f
@@ -1,4 +1,4 @@
|
||||
From c853c9e5c44f1b23a15a7ba629ee02f7d8ec23a0 Mon Sep 17 00:00:00 2001
|
||||
From 2afe24fc95dbb89e99df29ccbe73afa835f58202 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
Date: Mon, 6 Jan 2020 12:44:42 +0100
|
||||
Subject: [PATCH] meson.build: use 'python3' directly for python
|
||||
@@ -14,15 +14,15 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/meson.build b/meson.build
|
||||
index 13d95bb..b241eb2 100644
|
||||
index de6d16b5..79cedbf6 100644
|
||||
--- a/meson.build
|
||||
+++ b/meson.build
|
||||
@@ -64,7 +64,7 @@ flags = [
|
||||
@@ -68,7 +68,7 @@ flags = [
|
||||
|
||||
add_project_arguments(cc.get_supported_arguments(flags), language : 'c')
|
||||
|
||||
-prog_python = import('python').find_installation('python3')
|
||||
+prog_python = 'python3'
|
||||
|
||||
libdrm_dep = dependency('libdrm', version : '>=2.4.50')
|
||||
thread_dep = dependency('threads')
|
||||
not_found = dependency('', required: false)
|
||||
libdrm_dep = dependency('libdrm', version : '>=2.4.50', required: get_option('drm').enabled() or get_option('venus'))
|
||||
|
||||
@@ -9,8 +9,8 @@ LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=c81c08eeefd9418fca8f88309a76db10"
|
||||
|
||||
DEPENDS = "libdrm libepoxy virtual/egl virtual/libgbm"
|
||||
SRCREV = "88b9fe3bfc64b23a701e4875006dbc0e769f14f6"
|
||||
SRC_URI = "git://gitlab.freedesktop.org/virgl/virglrenderer.git;branch=master;protocol=https \
|
||||
SRCREV = "9c9d55ecbe502e0d71ee99529709efcca69aac42"
|
||||
SRC_URI = "git://gitlab.freedesktop.org/virgl/virglrenderer.git;branch=main;protocol=https \
|
||||
file://0001-meson.build-use-python3-directly-for-python.patch \
|
||||
"
|
||||
|
||||
@@ -18,9 +18,9 @@ S = "${WORKDIR}/git"
|
||||
|
||||
inherit meson pkgconfig features_check
|
||||
|
||||
PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'vulkan', 'venus-experimental', '', d)}"
|
||||
PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'vulkan', 'venus', '', d)}"
|
||||
|
||||
PACKAGECONFIG[venus-experimental] = "-Dvenus-experimental=true,-Dvenus-experimental=false,vulkan-loader vulkan-headers"
|
||||
PACKAGECONFIG[venus] = "-Dvenus=true,-Dvenus=false,vulkan-loader vulkan-headers"
|
||||
PACKAGECONFIG[va] = "-Dvideo=true,-Dvideo=false,libva"
|
||||
PACKAGECONFIG[render-server] = "-Drender-server=true,-Drender-server=false"
|
||||
PACKAGECONFIG[drm-msm-experimental] = "-Ddrm-msm-experimental=true,-Ddrm-msm-experimental=false"
|
||||
Reference in New Issue
Block a user