From 5aaae40d94368e62ba4c30dbef25869e4e89ba36 Mon Sep 17 00:00:00 2001 From: joevt Date: Tue, 25 Oct 2022 23:06:59 -0700 Subject: [PATCH] Add Nvidia vendor ID. In case you want to emulate an Nvidia GPU in the future (for Core Image, etc.) --- devices/common/pci/pcidevice.h | 1 + 1 file changed, 1 insertion(+) diff --git a/devices/common/pci/pcidevice.h b/devices/common/pci/pcidevice.h index c0184cc..b1503a8 100644 --- a/devices/common/pci/pcidevice.h +++ b/devices/common/pci/pcidevice.h @@ -55,6 +55,7 @@ enum { PCI_VENDOR_ATI = 0x1002, PCI_VENDOR_MOTOROLA = 0x1057, PCI_VENDOR_APPLE = 0x106B, + PCI_VENDOR_NVIDIA = 0x10DE, };