mirror of
https://github.com/danbulant/node-x11
synced 2026-06-20 07:01:23 +00:00
CreatePixmap and CopyArea requests
This commit is contained in:
parent
1cfab85500
commit
e23f1caa68
1 changed files with 14 additions and 0 deletions
|
|
@ -233,6 +233,12 @@ module.exports = {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
|
CreatePixmap: [
|
||||||
|
function(depth, pid, drawable, width, height) {
|
||||||
|
return [ 'CCSLLSS', [53, depth, 4, pid, drawable, width, height] ];
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
// opcode 55
|
// opcode 55
|
||||||
CreateGC: [
|
CreateGC: [
|
||||||
function(cid, drawable, values) {
|
function(cid, drawable, values) {
|
||||||
|
|
@ -251,6 +257,14 @@ module.exports = {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
|
//
|
||||||
|
CopyArea: [
|
||||||
|
function(srcDrawable, dstDrawable, gc, srcX, srcY, dstX, dstY, width, height) {
|
||||||
|
return [ 'CxSLLLssssSS', [62, 7, srcDrawable, dstDrawable, gc, srcX, srcY, dstX, dstY, width, height] ];
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
PolyPoint: [
|
PolyPoint: [
|
||||||
function(coordMode, drawable, gc, points)
|
function(coordMode, drawable, gc, points)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue