summaryrefslogtreecommitdiffstats
path: root/server/tree.h
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2015-11-03 14:35:31 -0600
committerFrediano Ziglio <fziglio@redhat.com>2015-11-04 13:03:53 +0000
commit5f1bdb2166f60e3b4dfccf105022f9968e5e8414 (patch)
tree9a58df602e5b337dabe6cb9962ec698f00cfc8aa /server/tree.h
parent3cc2513d33c19875711c651a18eb5ae4bdb7fa96 (diff)
downloadspice-5f1bdb2166f60e3b4dfccf105022f9968e5e8414.tar.gz
spice-5f1bdb2166f60e3b4dfccf105022f9968e5e8414.tar.xz
spice-5f1bdb2166f60e3b4dfccf105022f9968e5e8414.zip
worker: Move some dpi code to display channel
This commit moves some DrawablePipeItem declarations to display-channel.h, though the function implementations remain in red_worker.c until they can be disentangled some more. Acked-by: Frediano Ziglio <fziglio@redhat.com>
Diffstat (limited to 'server/tree.h')
-rw-r--r--server/tree.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/server/tree.h b/server/tree.h
index 77f1fbf3..704bf533 100644
--- a/server/tree.h
+++ b/server/tree.h
@@ -65,40 +65,6 @@ struct DrawItem {
#define IS_DRAW_ITEM(item) ((item)->type == TREE_ITEM_TYPE_DRAWABLE)
-typedef struct DependItem {
- Drawable *drawable;
- RingItem ring_item;
-} DependItem;
-
-struct Drawable {
- uint8_t refs;
- RingItem surface_list_link;
- RingItem list_link;
- DrawItem tree_item;
- Ring pipes;
- PipeItem *pipe_item_rest;
- uint32_t size_pipe_item_rest;
- RedDrawable *red_drawable;
-
- Ring glz_ring;
-
- red_time_t creation_time;
- int frames_count;
- int gradual_frames_count;
- int last_gradual_frame;
- Stream *stream;
- Stream *sized_stream;
- int streamable;
- BitmapGradualType copy_bitmap_graduality;
- uint32_t group_id;
- DependItem depend_items[3];
-
- int surface_id;
- int surfaces_dest[3];
-
- uint32_t process_commands_generation;
-};
-
void tree_item_dump (TreeItem *item);
#endif /* TREE_H_ */