summaryrefslogtreecommitdiffstats
path: root/results/classifier/zero-shot/105/device/2188
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
commitdee4dcba78baf712cab403d47d9db319ab7f95d6 (patch)
tree418478faf06786701a56268672f73d6b0b4eb239 /results/classifier/zero-shot/105/device/2188
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloademulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
emulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/zero-shot/105/device/2188')
-rw-r--r--results/classifier/zero-shot/105/device/218823
1 files changed, 23 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/105/device/2188 b/results/classifier/zero-shot/105/device/2188
new file mode 100644
index 00000000..b3835860
--- /dev/null
+++ b/results/classifier/zero-shot/105/device/2188
@@ -0,0 +1,23 @@
+device: 0.787
+mistranslation: 0.777
+graphic: 0.731
+instruction: 0.605
+vnc: 0.558
+semantic: 0.450
+network: 0.417
+other: 0.408
+boot: 0.373
+socket: 0.324
+assembly: 0.120
+KVM: 0.067
+
+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.