From 509f134ae5205a34bef700dce39ee3c08b85a049 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 22:59:48 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- js/x11/core/gcfunction.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 js/x11/core/gcfunction.js 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