tx00100xt / SeriousSamClassic-VK

Open source game engine version developed by Croteam for Serious Sam Classic with Vulkan support (Windows, Linux, FreeBSD, OpenBSD, macOS, Raspberry Pi OS). Based on https://github.com/sultim-t/Serious-Engine-Vk and linux port https://github.com/icculus/Serious-Engine
GNU General Public License v2.0
101 stars 12 forks source link

what is it NVIDIA vendorID 0x13B5 ?? #2

Closed Heic0 closed 2 years ago

Heic0 commented 2 years ago

Engine/Graphics/Adapter.cpp

switch (properties.vendorID) { case 0x1002: pda->da_strVendor = "Advanced Micro Devices, Inc."; break; case 0x10DE: pda->da_strVendor = "Imagination Technologies"; break; case 0x13B5: pda->da_strVendor = "NVIDIA Corporation"; break; case 0x5143: pda->da_strVendor = "Qualcomm Technologies, Inc."; break; case 0x8086: pda->da_strVendor = "Intel Corporation"; break; default: pda->da_strVendor = TRANS("unknown");; break; }

tx00100xt commented 2 years ago

Yes, this is wrong, Nvidia vendor id 0x10DE

tx00100xt commented 2 years ago

Fixed https://github.com/tx00100xt/SeriousSamClassic-VK/commit/9f0d60cc4c810eceb8c3e51a24bbf9f91c5dc083 I think the issue can be closed