From 04a221226dc613ff8caca7bcacf76830bab3d9d8 Mon Sep 17 00:00:00 2001 From: baldurk Date: Mon, 26 Aug 2019 19:12:59 +0100 Subject: [PATCH] Identify Google Swiftshader and Microsoft WARP PCI vendor IDs --- renderdoc/api/replay/replay_enums.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/renderdoc/api/replay/replay_enums.h b/renderdoc/api/replay/replay_enums.h index aaaf5278e..b4d7f8dbe 100644 --- a/renderdoc/api/replay/replay_enums.h +++ b/renderdoc/api/replay/replay_enums.h @@ -1452,6 +1452,8 @@ constexpr GPUVendor GPUVendorFromPCIVendor(uint32_t vendorID) : vendorID == 0x8086 ? GPUVendor::Intel : vendorID == 0x10DE ? GPUVendor::nVidia : vendorID == 0x5143 ? GPUVendor::Qualcomm + : vendorID == 0x1AE0 ? GPUVendor::Software // Google Swiftshader + : vendorID == 0x1414 ? GPUVendor::Software // Microsoft WARP : GPUVendor::Unknown; // clang-format on }