d52c454aad
Add a vhost-user gpu backend, based on virtio-gpu/3d device. It is associated with a vhost-user-gpu device. Various TODO and nice to have items: - multi-head support - crash & resume handling - accelerated rendering/display that avoids the waiting round trips - edid support Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-id: 20190524130946.31736-6-marcandre.lureau@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
11 lines
265 B
Makefile
11 lines
265 B
Makefile
vhost-user-gpu-obj-y = main.o virgl.o vugbm.o
|
|
|
|
main.o-cflags := $(PIXMAN_CFLAGS) $(GBM_CFLAGS)
|
|
main.o-libs := $(PIXMAN_LIBS)
|
|
|
|
virgl.o-cflags := $(VIRGL_CFLAGS) $(GBM_CFLAGS)
|
|
virgl.o-libs := $(VIRGL_LIBS)
|
|
|
|
vugbm.o-cflags := $(GBM_CFLAGS)
|
|
vugbm.o-libs := $(GBM_LIBS)
|