From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0715D138359 for ; Tue, 17 Nov 2020 04:45:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB057E0933; Tue, 17 Nov 2020 04:45:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B274EE0933 for ; Tue, 17 Nov 2020 04:45:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF0C9340EDB for ; Tue, 17 Nov 2020 04:45:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C83143B for ; Tue, 17 Nov 2020 04:45:40 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1605588324.88d0192a2531f59099898c3fc160be39f7ef6724.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mesa/mesa-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 88d0192a2531f59099898c3fc160be39f7ef6724 X-VCS-Branch: master Date: Tue, 17 Nov 2020 04:45:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8c189f83-f36b-4d8d-a46d-e1370aff40bc X-Archives-Hash: bc69cb725d246d80771489b9500558f0 commit: 88d0192a2531f59099898c3fc160be39f7ef6724 Author: Ross Charles Campbell gmail com> AuthorDate: Mon Nov 16 04:16:24 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Nov 17 04:45:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88d0192a media-libs/mesa: add video_cards_v3d to vulkan support list Raspberry Pi's V3DV Vulkan Driver has now landed in mainline Mesa and this PR allows V3DV vulkan driver to be built in live version. Closes: https://github.com/gentoo/gentoo/pull/18274 Signed-off-by: Ross Charles Campbell gmail.com> Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-9999.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index b128d3746f5..b2b79088f3c 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -259,8 +259,9 @@ pkg_pretend() { if use vulkan; then if ! use video_cards_i965 && ! use video_cards_iris && - ! use video_cards_radeonsi; then - ewarn "Ignoring USE=vulkan since VIDEO_CARDS does not contain i965, iris, or radeonsi" + ! use video_cards_radeonsi && + ! use video_cards_v3d; then + ewarn "Ignoring USE=vulkan since VIDEO_CARDS does not contain i965, iris, radeonsi, or v3d" fi fi @@ -473,6 +474,7 @@ multilib_src_configure() { vulkan_enable video_cards_i965 intel vulkan_enable video_cards_iris intel vulkan_enable video_cards_radeonsi amd + vulkan_enable video_cards_v3d broadcom fi if use gallium; then