mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 22:32:57 +02:00
Detect AMD gpu on more than one possible token...
This commit is contained in:
parent
a66bd04810
commit
bde50aa21c
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ const char* Instance::findGPUVendorInDescription(const std::string& description)
|
|||
return keys::gpu::vendor_Intel;
|
||||
}
|
||||
// AMD gpu
|
||||
else if (description.find(keys::gpu::vendor_AMD) != std::string::npos) {
|
||||
else if ((description.find(keys::gpu::vendor_AMD) != std::string::npos) || (description.find("Radeon") != std::string::npos)) {
|
||||
return keys::gpu::vendor_AMD;
|
||||
}
|
||||
// NVIDIA gpu
|
||||
|
|
Loading…
Reference in a new issue