summaryrefslogtreecommitdiffstats
path: root/client/cursor_channel.cpp
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-06-18 17:11:39 +0200
committerAlexander Larsson <alexl@redhat.com>2010-06-18 20:27:32 +0200
commit3c8cb83af5cbe85e6ab41ec1c0b41c5a29230d9e (patch)
treedb8fbd3bf3c04216a9fc97011e8e00d3d0b21e03 /client/cursor_channel.cpp
parent7fa29ea67e5202d4a3f6678445cef9bcad54aa79 (diff)
downloadspice-3c8cb83af5cbe85e6ab41ec1c0b41c5a29230d9e.tar.gz
spice-3c8cb83af5cbe85e6ab41ec1c0b41c5a29230d9e.tar.xz
spice-3c8cb83af5cbe85e6ab41ec1c0b41c5a29230d9e.zip
Make cursor data @as_ptr to avoid copying data
Diffstat (limited to 'client/cursor_channel.cpp')
-rw-r--r--client/cursor_channel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/cursor_channel.cpp b/client/cursor_channel.cpp
index 26eb4c86..c973e9da 100644
--- a/client/cursor_channel.cpp
+++ b/client/cursor_channel.cpp
@@ -485,7 +485,7 @@ void CursorChannel::create_native_cursor(CursorData* cursor)
cursor->set_opaque(native_cursor);
}
-void CursorChannel::set_cursor(SpiceCursor& red_cursor, int data_size, int x, int y, bool visible)
+void CursorChannel::set_cursor(SpiceCursor& red_cursor, int x, int y, bool visible)
{
CursorData *cursor;
@@ -497,7 +497,7 @@ void CursorChannel::set_cursor(SpiceCursor& red_cursor, int data_size, int x, in
if (red_cursor.flags & SPICE_CURSOR_FLAGS_FROM_CACHE) {
cursor = _cursor_cache.get(red_cursor.header.unique);
} else {
- cursor = new CursorData(red_cursor, data_size);
+ cursor = new CursorData(red_cursor, red_cursor.data_size);
if (red_cursor.flags & SPICE_CURSOR_FLAGS_CACHE_ME) {
ASSERT(red_cursor.header.unique);
_cursor_cache.add(red_cursor.header.unique, cursor);
@@ -560,7 +560,7 @@ void CursorChannel::handle_init(RedPeer::InMessage *message)
attach_to_screen(get_client().get_application(), get_id());
remove_cursor();
_cursor_cache.clear();
- set_cursor(init->cursor, message->size() - sizeof(SpiceMsgCursorInit), init->position.x,
+ set_cursor(init->cursor, init->position.x,
init->position.y, init->visible != 0);
}
@@ -574,7 +574,7 @@ void CursorChannel::handle_reset(RedPeer::InMessage *message)
void CursorChannel::handle_cursor_set(RedPeer::InMessage* message)
{
SpiceMsgCursorSet* set = (SpiceMsgCursorSet*)message->data();
- set_cursor(set->cursor, message->size() - sizeof(SpiceMsgCursorSet), set->position.x,
+ set_cursor(set->cursor, set->position.x,
set->position.y, set->visible != 0);
}