From cd1a8771d6558a1f1f99ba3c77b1bc3db09fc108 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 19 Apr 2025 13:41:31 -0600 Subject: [PATCH] Set rockchip GPU name --- web/src/components/Statusbar.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/components/Statusbar.tsx b/web/src/components/Statusbar.tsx index 2b03b750df..0ac6d10a4a 100644 --- a/web/src/components/Statusbar.tsx +++ b/web/src/components/Statusbar.tsx @@ -101,6 +101,9 @@ export default function Statusbar() { case "intel-qsv": gpuTitle = "Intel GPU"; break; + case "rockchip": + gpuTitle = "Rockchip GPU"; + break; default: gpuTitle = name; break;