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 8D9CC158041 for ; Wed, 21 Feb 2024 08:18:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE654E29C9; Wed, 21 Feb 2024 08:18:17 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9D12AE29E2 for ; Wed, 21 Feb 2024 08:18:17 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A044F3431CE for ; Wed, 21 Feb 2024 08:18:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 136E514C5 for ; Wed, 21 Feb 2024 08:18:15 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1708503492.7ea33d4448abb34961cad3fc4a6cf63fb8dff82b.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/files/gentoo-hwaccel-prefs.js-r2 X-VCS-Directories: www-client/firefox/files/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 7ea33d4448abb34961cad3fc4a6cf63fb8dff82b X-VCS-Branch: master Date: Wed, 21 Feb 2024 08:18:15 +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: 7c41d01c-60aa-42ed-aa76-ba0965e10e5f X-Archives-Hash: d8704cd48c32669eba693c3522d72801 commit: 7ea33d4448abb34961cad3fc4a6cf63fb8dff82b Author: Joonas Niilola gentoo org> AuthorDate: Wed Feb 21 07:54:25 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Feb 21 08:18:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ea33d44 www-client/firefox: add layers.gpu-process.enabled=true to rapid pref - +hwaccel pref. Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox/files/gentoo-hwaccel-prefs.js-r2 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/www-client/firefox/files/gentoo-hwaccel-prefs.js-r2 b/www-client/firefox/files/gentoo-hwaccel-prefs.js-r2 index 48025caac341..fc561d05e697 100644 --- a/www-client/firefox/files/gentoo-hwaccel-prefs.js-r2 +++ b/www-client/firefox/files/gentoo-hwaccel-prefs.js-r2 @@ -1,5 +1,6 @@ /* Force hardware accelerated rendering due to USE=hwaccel */ -pref("gfx.webrender.all", true); -pref("layers.acceleration.force-enabled", true); +pref("gfx.webrender.all", true); +pref("layers.acceleration.force-enabled", true); +pref("layers.gpu-process.enabled", true); pref("media.hardware-video-decoding.enabled", true); -pref("webgl.force-enabled", true); +pref("webgl.force-enabled", true);