mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 05:36:17 +00:00
2ae69475b3
- changed pkg url to github - added libxcvt dep - updated pkg describtion - updated patches name scheme - dropped old patches:5f65a6246f
21b896939c
https://download.nvidia.com/XFree86/Linux-x86_64/435.21/README/primerenderoffload.html
23 lines
795 B
Diff
23 lines
795 B
Diff
From 7b147dfef7a2ce8247710660d2b95d84100aaad7 Mon Sep 17 00:00:00 2001
|
|
From: SupervisedThinking <supervisedthinking@gmail.com>
|
|
Date: Tue, 19 Oct 2021 18:22:38 +0200
|
|
Subject: [PATCH] Detect GPUs as "radeon" instead "ati"
|
|
|
|
---
|
|
hw/xfree86/common/xf86pciBus.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/hw/xfree86/common/xf86pciBus.c b/hw/xfree86/common/xf86pciBus.c
|
|
index aeeed8be66..5c22bd4080 100644
|
|
--- a/hw/xfree86/common/xf86pciBus.c
|
|
+++ b/hw/xfree86/common/xf86pciBus.c
|
|
@@ -1106,7 +1106,7 @@ xf86VideoPtrToDriverList(struct pci_device *dev, XF86MatchedDrivers *md)
|
|
driverList[0] = "ast";
|
|
break;
|
|
case 0x1002:
|
|
- driverList[0] = "ati";
|
|
+ driverList[0] = "radeon";
|
|
break;
|
|
case 0x102c:
|
|
driverList[0] = "chips";
|