We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3340cd commit 657dc4fCopy full SHA for 657dc4f
include/pci_ids/virtio_gpu_pci_ids.h
@@ -0,0 +1 @@
1
+CHIPSET(0x0010, VIRTGL, VIRTGL)
src/loader/pci_id_driver_map.h
@@ -53,6 +53,12 @@ static const int radeonsi_chip_ids[] = {
53
#undef CHIPSET
54
};
55
56
+static const int virtio_gpu_chip_ids[] = {
57
+#define CHIPSET(chip, name, family) chip,
58
+#include "pci_ids/virtio_gpu_pci_ids.h"
59
+#undef CHIPSET
60
+};
61
+
62
static const int vmwgfx_chip_ids[] = {
63
#define CHIPSET(chip, name, family) chip,
64
#include "pci_ids/vmwgfx_pci_ids.h"
@@ -78,6 +84,7 @@ static const struct {
78
84
{ 0x1002, "radeonsi", radeonsi_chip_ids, ARRAY_SIZE(radeonsi_chip_ids), _LOADER_GALLIUM},
79
85
{ 0x10de, "nouveau_vieux", NULL, -1, _LOADER_DRI, is_nouveau_vieux },
80
86
{ 0x10de, "nouveau", NULL, -1, _LOADER_GALLIUM },
87
+ { 0x1af4, "virtio_gpu", virtio_gpu_chip_ids, ARRAY_SIZE(virtio_gpu_chip_ids), _LOADER_GALLIUM },
81
88
{ 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids), _LOADER_GALLIUM },
82
89
{ 0x0000, NULL, NULL, 0 },
83
90
0 commit comments