diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2014-07-11 12:51:43 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-10-08 10:31:35 +0200 |
commit | 9d9e152136bdaa75ea98e5c2105f2a7127e369eb (patch) | |
tree | 9078103c4f24f14af2594d9dfbc3abbff07b8204 /hw/display/Makefile.objs | |
parent | bc79e96442283471c92c8ea7ae15563274f7b0cb (diff) | |
download | qemu-9d9e152136bdaa75ea98e5c2105f2a7127e369eb.tar.gz qemu-9d9e152136bdaa75ea98e5c2105f2a7127e369eb.tar.bz2 qemu-9d9e152136bdaa75ea98e5c2105f2a7127e369eb.zip |
virtio-gpu: add 3d mode and virgl rendering support.
Add virglrenderer library detection. Add 3d mode to virtio-gpu,
wire up virglrenderer library. When in 3d mode render using the
new context management and texture scanout callbacks.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'hw/display/Makefile.objs')
-rw-r--r-- | hw/display/Makefile.objs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hw/display/Makefile.objs b/hw/display/Makefile.objs index dd8ea76d17..f0cf431a0f 100644 --- a/hw/display/Makefile.objs +++ b/hw/display/Makefile.objs @@ -35,6 +35,10 @@ obj-$(CONFIG_VGA) += vga.o common-obj-$(CONFIG_QXL) += qxl.o qxl-logger.o qxl-render.o -obj-$(CONFIG_VIRTIO) += virtio-gpu.o +obj-$(CONFIG_VIRTIO) += virtio-gpu.o virtio-gpu-3d.o obj-$(CONFIG_VIRTIO_PCI) += virtio-gpu-pci.o obj-$(CONFIG_VIRTIO_VGA) += virtio-vga.o +virtio-gpu.o-cflags := $(VIRGL_CFLAGS) +virtio-gpu.o-libs += $(VIRGL_LIBS) +virtio-gpu-3d.o-cflags := $(VIRGL_CFLAGS) +virtio-gpu-3d.o-libs += $(VIRGL_LIBS) |