22 lines
442 B
JavaScript
22 lines
442 B
JavaScript
|
/*
|
||
|
* 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
|
||
|
};
|