summary refs log tree commit diff stats
path: root/results/classifier/108/other/1172
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/108/other/1172')
-rw-r--r--results/classifier/108/other/117274
1 files changed, 74 insertions, 0 deletions
diff --git a/results/classifier/108/other/1172 b/results/classifier/108/other/1172
new file mode 100644
index 000000000..88bac3c52
--- /dev/null
+++ b/results/classifier/108/other/1172
@@ -0,0 +1,74 @@
+files: 0.777
+device: 0.579
+socket: 0.569
+PID: 0.497
+semantic: 0.495
+vnc: 0.441
+graphic: 0.435
+network: 0.417
+other: 0.363
+performance: 0.351
+permissions: 0.334
+debug: 0.303
+boot: 0.269
+KVM: 0.138
+
+Make pixman an optional dependency
+Additional information:
+Only these files use pixman functions (excluding tests, of course):
+```
+meson.build
+contrib/vhost-user-gpu/vhost-user-gpu.c
+contrib/vhost-user-gpu/meson.build
+chardev/meson.build
+include/ui/spice-display.h
+include/ui/sdl2.h
+include/ui/gtk.h
+include/ui/qemu-pixman.h
+include/ui/console.h
+include/hw/display/xlnx_dp.h
+include/hw/virtio/virtio-gpu.h
+include/hw/virtio/virtio-gpu-pixman.h
+hw/display/vga.c
+hw/display/ramfb.c
+hw/display/vhost-user-gpu.c
+hw/display/virtio-gpu-gl.c
+hw/display/virtio-gpu-udmabuf.c
+hw/display/xenfb.c
+hw/display/ati_2d.c
+hw/display/meson.build
+hw/display/vmware_vga.c
+hw/display/qxl-render.c
+hw/display/xlnx_dp.c
+hw/display/bochs-display.c
+hw/display/sm501.c
+hw/display/virtio-gpu.c
+hw/vfio/display.c
+hw/s390x/meson.build
+ui/cocoa.m
+ui/console-gl.c
+ui/vnc.c
+ui/qemu-pixman.c
+ui/gtk.c
+ui/console.c
+ui/trace-events
+ui/meson.build
+ui/dbus-listener.c
+ui/vnc-enc-tight.c
+ui/vnc.h
+ui/spice-display.c
+ui/dbus-display1.xml
+ui/sdl2-2d.c
+```
+
+This code in `meson.build` always require **pixman** for building system emulators:
+```meson
+pixman = not_found
+if have_system or have_tools
+  pixman = dependency('pixman-1', required: have_system, version:'>=0.21.8',
+                      method: 'pkg-config', kwargs: static_kwargs)
+endif
+```
+https://gitlab.com/qemu-project/qemu/-/blob/master/meson.build#L520
+
+Most of the code could work without it.