MeshCentral/public/novnc/core/decoders/copyrect.js

28 lines
616 B
JavaScript
Raw Normal View History

2020-06-06 21:55:47 -04:00
/*
* noVNC: HTML5 VNC client
2021-11-29 15:08:15 -05:00
* Copyright (C) 2019 The noVNC Authors
2020-06-06 21:55:47 -04:00
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
*
*/
export default class CopyRectDecoder {
decodeRect(x, y, width, height, sock, display, depth) {
if (sock.rQwait("COPYRECT", 4)) {
return false;
}
let deltaX = sock.rQshift16();
let deltaY = sock.rQshift16();
2021-11-29 15:08:15 -05:00
if ((width === 0) || (height === 0)) {
return true;
}
2020-06-06 21:55:47 -04:00
display.copyImage(deltaX, deltaY, x, y, width, height);
return true;
}
}