diff options
author | Gerd Hoffmann | 2018-03-08 10:06:15 +0100 |
---|---|---|
committer | Gerd Hoffmann | 2018-03-12 09:01:48 +0100 |
commit | e181f8bbd011dbe9f30a58145215f47c4bb6ac6b (patch) | |
tree | b6f0cc45a6d95eb069144371d21bba9bee1f16af /ui/trace-events | |
parent | vnc: deal with surface NULL pointers (diff) | |
download | qemu-e181f8bbd011dbe9f30a58145215f47c4bb6ac6b.tar.gz qemu-e181f8bbd011dbe9f30a58145215f47c4bb6ac6b.tar.xz qemu-e181f8bbd011dbe9f30a58145215f47c4bb6ac6b.zip |
spice: drop dprint() debug logging
Some calls are deleted, some are converted into tracepoints.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-id: 20180308090618.30147-2-kraxel@redhat.com
Diffstat (limited to 'ui/trace-events')
-rw-r--r-- | ui/trace-events | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ui/trace-events b/ui/trace-events index 861b68a305..518e950a01 100644 --- a/ui/trace-events +++ b/ui/trace-events @@ -75,6 +75,15 @@ qemu_spice_create_primary_surface(int qid, uint32_t sid, void *surface, int asyn qemu_spice_destroy_primary_surface(int qid, uint32_t sid, int async) "%d sid=%u async=%d" qemu_spice_wakeup(uint32_t qid) "%d" qemu_spice_create_update(uint32_t left, uint32_t right, uint32_t top, uint32_t bottom) "lr %d -> %d, tb -> %d -> %d" +qemu_spice_display_update(int qid, uint32_t x, uint32_t y, uint32_t w, uint32_t h) "%d +%d+%d %dx%d" +qemu_spice_display_surface(int qid, uint32_t w, uint32_t h, int fast) "%d %dx%d, fast %d" +qemu_spice_display_refresh(int qid, int notify) "%d notify %d" +qemu_spice_ui_info(int qid, uint32_t width, uint32_t height) "%d %dx%d" + +qemu_spice_gl_surface(int qid, uint32_t w, uint32_t h, uint32_t fourcc) "%d %dx%d, fourcc 0x%x" +qemu_spice_gl_scanout_disable(int qid) "%d" +qemu_spice_gl_scanout_texture(int qid, uint32_t w, uint32_t h, uint32_t fourcc) "%d %dx%d, fourcc 0x%x" +qemu_spice_gl_update(int qid, uint32_t x, uint32_t y, uint32_t w, uint32_t h) "%d +%d+%d %dx%d" # ui/keymaps.c keymap_parse(const char *file) "file %s" |