diff options
Diffstat (limited to 'results/classifier/118/review/1431')
| -rw-r--r-- | results/classifier/118/review/1431 | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/results/classifier/118/review/1431 b/results/classifier/118/review/1431 new file mode 100644 index 000000000..bf3f26165 --- /dev/null +++ b/results/classifier/118/review/1431 @@ -0,0 +1,110 @@ +mistranslation: 0.819 +graphic: 0.796 +device: 0.622 +KVM: 0.470 +files: 0.389 +x86: 0.364 +socket: 0.356 +PID: 0.355 +debug: 0.353 +semantic: 0.338 +permissions: 0.305 +register: 0.256 +vnc: 0.251 +kernel: 0.240 +VMM: 0.223 +peripherals: 0.223 +virtual: 0.210 +hypervisor: 0.193 +user-level: 0.173 +boot: 0.171 +TCG: 0.163 +performance: 0.161 +architecture: 0.157 +ppc: 0.147 +risc-v: 0.145 +i386: 0.133 +arm: 0.129 +network: 0.121 +assembly: 0.082 +-------------------- +virtual: 0.963 +KVM: 0.961 +x86: 0.959 +hypervisor: 0.953 +user-level: 0.325 +debug: 0.150 +device: 0.067 +kernel: 0.035 +architecture: 0.028 +files: 0.026 +socket: 0.018 +TCG: 0.016 +performance: 0.015 +graphic: 0.014 +semantic: 0.009 +boot: 0.009 +register: 0.008 +peripherals: 0.008 +PID: 0.006 +ppc: 0.005 +VMM: 0.004 +network: 0.003 +permissions: 0.002 +assembly: 0.002 +risc-v: 0.001 +i386: 0.001 +vnc: 0.001 +mistranslation: 0.001 +arm: 0.000 + +qemu spice support opengl +Steps to reproduce: +I wan to use spice support opengl, but my qemu seems not support,what can i do to support opengl for spice? + +qemu configure: +``` +./configure --target-list=x86_64-softmmu --enable-kvm --enable-debug --enable-spice --enable-numa --enable-libusb --enable-curl --enable-usb-redir --enable-libiscsi --enable-virglrenderer --enable-opengl --enable-gtk --prefix="/usr" +``` + +xml: +```xml +<domain type='kvm'> + <name>test</name> + <memory>1048576</memory> + <currentMemory>1048576</currentMemory> + <vcpu>1</vcpu> + <os> + <type arch='x86_64' machine='pc'>hvm</type> + </os> + <cpu mode='custom' match='exact' check='full'> + <topology sockets='1' dies='1' cores='1' threads='1'/> + </cpu> + <features> + <acpi/> + <apic/> + <pae/> + </features> + <clock offset='localtime'/> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <devices> + <emulator>/usr/bin/qemu-system-x86_64</emulator> + <disk type='file' device='disk'> + <driver name='qemu' type='qcow2'/> + <source file='/root/kk.img'/> + <target dev='hda' bus='ide'/> + </disk> + <input type='mouse' bus='ps2'/> + <graphics type='spice'> + <listen type='none'/> + <gl enable='yes' rendernode='/dev/dri/renderD128'/> + </graphics> + </devices> +</domain> +``` + +error report: + + |