CreatePixmap and CopyArea requests

This commit is contained in:
sidorares 2011-07-26 13:44:44 +10:00
parent 1cfab85500
commit e23f1caa68

View file

@ -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)
{