From ceb94ba4c3518d5a5238b28ebc3e3a458d8ec0ee Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 27 Feb 2012 12:36:25 -0800 Subject: [PATCH] Actually DRAW image data. --- guacamole-common-js/src/main/resources/layer.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guacamole-common-js/src/main/resources/layer.js b/guacamole-common-js/src/main/resources/layer.js index 32faa322c..d1cbd06b9 100644 --- a/guacamole-common-js/src/main/resources/layer.js +++ b/guacamole-common-js/src/main/resources/layer.js @@ -436,6 +436,9 @@ Guacamole.Layer = function(width, height) { dst.data[i+3] = 0xFF; // Assume output opaque } + // Draw image data + displayContext.putImageData(dst, x, y); + } // Unblock the source layer now that draw is complete