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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 65CE6158086 for ; Sat, 30 Oct 2021 23:04:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF049E0824; Sat, 30 Oct 2021 23:04:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A68A6E0824 for ; Sat, 30 Oct 2021 23:04:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D026B3433D8 for ; Sat, 30 Oct 2021 23:04:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FE6518C for ; Sat, 30 Oct 2021 23:04:28 +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: <1635635054.2ce2c4236ce68ff169cebe1de33bd0432135f38a.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: 2ce2c4236ce68ff169cebe1de33bd0432135f38a X-VCS-Branch: master Date: Sat, 30 Oct 2021 23:04:28 +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: fc29b446-f371-4d30-b9b4-50ed7b42aed7 X-Archives-Hash: 01e14e82b256f2d0de7b337579f1d06f commit: 2ce2c4236ce68ff169cebe1de33bd0432135f38a Author: Matt Turner gentoo org> AuthorDate: Sat Oct 30 22:06:17 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Oct 30 23:04:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ce2c423 media-libs/mesa: Enable turnip vulkan driver with VIDEO_CARDS=freedreno 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 3d6bd95e308..5829adce48f 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -255,11 +255,12 @@ llvm_check_deps() { pkg_pretend() { if use vulkan; then - if ! use video_cards_i965 && + if ! use video_cards_freedreno && + ! use video_cards_i965 && ! use video_cards_iris && ! use video_cards_radeonsi && ! use video_cards_v3d; then - ewarn "Ignoring USE=vulkan since VIDEO_CARDS does not contain i965, iris, radeonsi, or v3d" + ewarn "Ignoring USE=vulkan since VIDEO_CARDS does not contain freedreno, i965, iris, radeonsi, or v3d" fi fi @@ -489,6 +490,7 @@ multilib_src_configure() { fi if use vulkan; then + vulkan_enable video_cards_freedreno freedreno vulkan_enable video_cards_i965 intel vulkan_enable video_cards_iris intel vulkan_enable video_cards_radeonsi amd