summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_missing/host_missing/accel_missing/2188
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-05-30 16:52:07 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-05-30 16:52:17 +0200
commit9260319e7411ff8281700a532caa436f40120ec4 (patch)
tree2f6bfe5f3458dd49d328d3a9eb508595450adec0 /gitlab/issues_text/target_missing/host_missing/accel_missing/2188
parent225caa38269323af1bfc2daadff5ec8bd930747f (diff)
downloadqemu-analysis-9260319e7411ff8281700a532caa436f40120ec4.tar.gz
qemu-analysis-9260319e7411ff8281700a532caa436f40120ec4.zip
gitlab scraper: download in toml and text format
Diffstat (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/2188')
-rw-r--r--gitlab/issues_text/target_missing/host_missing/accel_missing/218810
1 files changed, 10 insertions, 0 deletions
diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/2188 b/gitlab/issues_text/target_missing/host_missing/accel_missing/2188
new file mode 100644
index 000000000..9ac358238
--- /dev/null
+++ b/gitlab/issues_text/target_missing/host_missing/accel_missing/2188
@@ -0,0 +1,10 @@
+virtio_gpu_gl_update_cursor_data() ignores the cursor resource's pixel format
+Description of problem:
+The function virtio_gpu_gl_update_cursor_data() ignores the pixel format of the resource it's reading from. It literally uses memcpy() to copy the pointer data. This works just fins if both the guest OS and the display backend use the same pixel format. 
+
+The SDL backend seems to use a different pixel format to the GTK display backend. So, you'll get the correct colours in one, but not the other.
+Steps to reproduce:
+1. Run a VM using Virtio GPU using the GTK backend. Set the guest OS' mouse pointer to one that's red instead of white, and note the mouse pointer's actual colour
+2. Now run the same VM using the SDL display backend. Check the colour of the mouse pointer (that should be red)
+
+NOTE: The choice of guest OS shouldn't matter.