Ver Fonte

Merge pull request #46256 from hpvb/dri-prime-amd-master

Add 'AMD' GPU vendor name to PRIME detector
Hein-Pieter van Braam há 4 anos atrás
pai
commit
d4d7535524
1 ficheiros alterados com 2 adições e 1 exclusões
  1. 2 1
      platform/linuxbsd/detect_prime_x11.cpp

+ 2 - 1
platform/linuxbsd/detect_prime_x11.cpp

@@ -61,6 +61,7 @@ struct vendor {
 
 vendor vendormap[] = {
 	{ "Advanced Micro Devices, Inc.", 30 },
+	{ "AMD", 30 },
 	{ "NVIDIA Corporation", 30 },
 	{ "X.Org", 30 },
 	{ "Intel Open Source Technology Center", 20 },
@@ -128,7 +129,7 @@ void create_context() {
 
 int detect_prime() {
 	pid_t p;
-	int priorities[2];
+	int priorities[2] = {};
 	String vendors[2];
 	String renderers[2];