[Spice-devel] [spice-HTML5][PATCH try 2] Handling cursor caching
Vincent Desprez
vincent.desprez at gmail.com
Thu Mar 7 05:46:42 PST 2013
Signed-off-by: Vincent Desprez <vincent.desprez at apwise.com>
---
cursor.js | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/cursor.js b/cursor.js
index e3f6e0e..6f2f26a 100644
--- a/cursor.js
+++ b/cursor.js
@@ -59,7 +59,7 @@ SpiceCursorConn.prototype.process_channel_message = function(msg)
return true;
}
- if (cursor_set.flags > 0)
+ if (cursor_set.flags == SPICE_CURSOR_FLAGS_NONE)
this.log_warn("FIXME: No support for cursor flags " + cursor_set.flags);
if (cursor_set.cursor.header.type != SPICE_CURSOR_TYPE_ALPHA)
@@ -83,9 +83,15 @@ SpiceCursorConn.prototype.process_channel_message = function(msg)
return false;
}
+SpiceCursorConn.cursor_cache = [];
SpiceCursorConn.prototype.set_cursor = function(cursor)
{
- var pngstr = create_rgba_png(cursor.header.height, cursor.header.width, cursor.data);
+ if (cursor.flags == SPICE_CURSOR_FLAGS_FROM_CACHE)
+ var pngstr = SpiceCursorConn.cursor_cache[cursor.header.unique[0]];
+ else
+ var pngstr = create_rgba_png(cursor.header.height, cursor.header.width, cursor.data);
+ if (cursor.flags == SPICE_CURSOR_FLAGS_CACHE_ME)
+ SpiceCursorConn.cursor_cache[cursor.header.unique[0]] = pngstr;
var curstr = 'url(data:image/png,' + pngstr + ') ' +
cursor.header.hot_spot_x + ' ' + cursor.header.hot_spot_y + ", default";
document.getElementById(this.parent.screen_id).style.cursor = curstr;
--
1.7.10.4
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: Attached Message Part
URL: <http://lists.freedesktop.org/archives/spice-devel/attachments/20130307/3a472347/attachment.ksh>
More information about the Spice-devel
mailing list