diff --git a/js/x11/core/gcfunction.js b/js/x11/core/gcfunction.js new file mode 100644 index 0000000..d57f10c --- /dev/null +++ b/js/x11/core/gcfunction.js @@ -0,0 +1,22 @@ +/* + * GCFunction named shortcuts + */ + +module.exports = { + GXclear : 0x0, + GXand : 0x1, + GXandReverse : 0x2, + GXcopy : 0x3, + GXandInverted : 0x4, + GXnoop : 0x5, + GXxor : 0x6, + GXor : 0x7, + GXnor : 0x8, + GXequiv : 0x9, + GXinvert : 0xa, + GXorReverse : 0xb, + GXcopyInverted : 0xc, + GXorInverted : 0xd, + GXnand : 0xe, + GXset : 0xf +}; \ No newline at end of file