mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-03-04 04:07:08 +00:00
OpenGL: Accept "AMD" as a vendor string for, well, AMD.
Seen with the open source driver by archanox
This commit is contained in:
parent
96406364ca
commit
e3c748cc97
@ -162,7 +162,8 @@ void CheckGLExtensions() {
|
||||
|| vendor == "nouveau") {
|
||||
gl_extensions.gpuVendor = GPU_VENDOR_NVIDIA;
|
||||
} else if (vendor == "Advanced Micro Devices, Inc."
|
||||
|| vendor == "ATI Technologies Inc.") {
|
||||
|| vendor == "ATI Technologies Inc."
|
||||
|| vendor == "AMD") {
|
||||
gl_extensions.gpuVendor = GPU_VENDOR_AMD;
|
||||
} else if (vendor == "Intel"
|
||||
|| vendor == "Intel Inc."
|
||||
|
Loading…
x
Reference in New Issue
Block a user