mirror of
https://github.com/danbulant/node-x11
synced 2026-05-19 20:39:03 +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
|
||||
CreateGC: [
|
||||
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: [
|
||||
function(coordMode, drawable, gc, points)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue