diff options
| author | 2024-02-01 17:53:26 -0600 | |
|---|---|---|
| committer | 2024-02-01 17:53:26 -0600 | |
| commit | b51b47e7073471e27468aace3d7e522e6144f4d2 (patch) | |
| tree | e6e174784cdebf0d0f502701aa032a3da1350168 /src/video_core/vulkan_common | |
| parent | Merge pull request #12860 from liamwhite/serialization2 (diff) | |
| download | yuzu-b51b47e7073471e27468aace3d7e522e6144f4d2.tar.gz yuzu-b51b47e7073471e27468aace3d7e522e6144f4d2.tar.xz yuzu-b51b47e7073471e27468aace3d7e522e6144f4d2.zip | |
Add Samsung Proprietary Driver ID to Reorder Pass
For RDNA-based Samsung Xclipse GPUs
Diffstat (limited to 'src/video_core/vulkan_common')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 727bbd98d..d7216d349 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp | |||
| @@ -868,6 +868,8 @@ std::string Device::GetDriverName() const { | |||
| 868 | return "Qualcomm"; | 868 | return "Qualcomm"; |
| 869 | case VK_DRIVER_ID_ARM_PROPRIETARY: | 869 | case VK_DRIVER_ID_ARM_PROPRIETARY: |
| 870 | return "Mali"; | 870 | return "Mali"; |
| 871 | case VK_DRIVER_ID_SAMSUNG_PROPRIETARY: | ||
| 872 | return "Xclipse"; | ||
| 871 | case VK_DRIVER_ID_GOOGLE_SWIFTSHADER: | 873 | case VK_DRIVER_ID_GOOGLE_SWIFTSHADER: |
| 872 | return "SwiftShader"; | 874 | return "SwiftShader"; |
| 873 | case VK_DRIVER_ID_BROADCOM_PROPRIETARY: | 875 | case VK_DRIVER_ID_BROADCOM_PROPRIETARY: |