summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_missing/host_missing/accel_missing/1346
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
commit3e4c5a6261770bced301b5e74233e7866166ea5b (patch)
tree9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_missing/host_missing/accel_missing/1346
parente5634e2806195bee44407853c4bf8776f7abfa4f (diff)
downloadqemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz
qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/1346')
-rw-r--r--gitlab/issues_text/target_missing/host_missing/accel_missing/134635
1 files changed, 0 insertions, 35 deletions
diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/1346 b/gitlab/issues_text/target_missing/host_missing/accel_missing/1346
deleted file mode 100644
index 5a4bee368..000000000
--- a/gitlab/issues_text/target_missing/host_missing/accel_missing/1346
+++ /dev/null
@@ -1,35 +0,0 @@
-simulate x86_64 virtio-gpu-gl qemu report error
-Description of problem:
-when I run the below command, it can run ok, and myos can get the virtio-gpu feature,but it less 3d feature.
-   ```
-   ./qemu-system-x86_64 -nographic -M q35 -m 1024 -cpu Nehalem -smp 8 -kernel myos -device virtio-gpu
-   ```
-so I delete ```-nographic``` and modify the device to :
-```
--device virtio-gpu-gl -display sdl,gl=on
-```
-but qemu tells me ERROR:
-```
-qemu-system-x86_64: ../ui/console-gl.c:105: surface_gl_update_texture: Assertion `gls' failed.
-```
-Additional information:
-I modify the code qemu/ui/sdl2-gl.c function sdl2_gl_switch():
-
-`    
-#if 0
-if (is_placeholder(new_surface) && qemu_console_get_index(dcl->con)) {
-        qemu_gl_fini_shader(scon->gls);
-        scon->gls = NULL;
-        sdl2_window_destroy(scon);
-        return;
-    }
-#endif
-`
-and, qemu can run myos with ```-nographic```, and i can get 3d feature:
-   ```
-   ./qemu-system-x86_64 -nographic -M q35 -m 1024 -cpu Nehalem -smp 8 -kernel myos -device virtio-gpu-gl -display sdl,gl=on
-   ```
-
-I think there is something bug.
-
-thanks