Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. qemu-system-x86_64 -display sdl,gl=on
  2.  
  3. SDL1 display code has no opengl support.
  4. Please recompile qemu with SDL2, using
  5. ./configure --enable-sdl --with-sdlabi=2.0
  6. qemu-system-x86_64: OpenGL support is disabled
  7.  
  8. qemu-system-x86_64 -display sdl,gl=on
  9.  
  10. <graphics type='spice'>
  11. <listen type='none'/>
  12. <gl enable='yes'/>
  13. </graphics>
  14. <video>
  15. <model type='virtio'/>
  16. </video>
  17.  
  18. error: Failed to start domain debian9-xfce
  19. error: unsupported configuration: This QEMU doesn't support spice OpenGL
  20.  
  21. gir1.2-spice-client-gtk-3.0=0.33-3.3
  22. libspice-server1=0.13.90-0.2
  23. libvirglrenderer0=0.6.0-2
  24. mesa-utils=8.3.0-5
  25. libepoxy0=1.3.1-3
  26.  
  27. + if (graphics->data.spice.gl) {
  28. + if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SPICE_GL)) {
  29. + virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
  30. + _("This QEMU doesn't support spice OpenGL"));
  31. + goto error;
  32. + }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement