mirror of
https://github.com/danbulant/node-x11
synced 2026-05-19 04:18:35 +00:00
fix incorrect format in SetPictureTransform
This commit is contained in:
parent
6627fd5168
commit
97dba66197
1 changed files with 1 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ exports.requireExt = function(display, callback)
|
|||
}
|
||||
|
||||
ext.SetPictureTransform = function(pid, matrix) {
|
||||
var format = 'CCSLLLLLLLLLLLLL';
|
||||
var format = 'CCSLLLLLLLLLL';
|
||||
if (matrix.length !== 9)
|
||||
throw 'Render.SetPictureTransform: incorrect transform matrix. Must be array of 9 numbers';
|
||||
var params = [ext.majorOpcode, 28, 11, pid];
|
||||
|
|
|
|||
Loading…
Reference in a new issue