Now able to read VNC Viewer's primary requests.

This commit is contained in:
Simo Kinnunen
2015-09-13 20:09:15 +09:00
parent 045737e4bf
commit 66182666bd
3 changed files with 412 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
function PixelFormat(values) {
this.bitsPerPixel = values.bitsPerPixel
this.depth = values.depth
this.bigEndianFlag = values.bigEndianFlag
this.trueColorFlag = values.trueColorFlag
this.redMax = values.redMax
this.greenMax = values.greenMax
this.blueMax = values.blueMax
this.redShift = values.redShift
this.greenShift = values.greenShift
this.blueShift = values.blueShift
}
module.exports = PixelFormat