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 }