Skip to content

Commit

Permalink
Fixed wrong Vendor Id
Browse files Browse the repository at this point in the history
  • Loading branch information
tx00100xt committed Jun 1, 2022
1 parent b8cef6f commit 9f0d60c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SamTFE/Sources/Engine/Graphics/Adapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,8 @@ void CGfxLibrary::InitAPIs(void)
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 0x10DE: pda->da_strVendor = "NVIDIA Corporation"; break;
case 0x13B5: pda->da_strVendor = "ARM Ltd"; 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;
Expand Down
4 changes: 2 additions & 2 deletions SamTSE/Sources/Engine/Graphics/Adapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,8 @@ void CGfxLibrary::InitAPIs(void)
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 0x10DE: pda->da_strVendor = "NVIDIA Corporation"; break;
case 0x13B5: pda->da_strVendor = "ARM Ltd"; 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;
Expand Down

0 comments on commit 9f0d60c

Please sign in to comment.