Custom rendering almost works
This commit is contained in:
10
libs/core/enums.d.ts
vendored
10
libs/core/enums.d.ts
vendored
@ -6,10 +6,12 @@
|
||||
*/
|
||||
|
||||
declare enum Draw {
|
||||
Normal = 0,
|
||||
Clear = (0x0004), // DRAW_OPT_CLEAR_PIXELS
|
||||
Xor = (0x0018), // DRAW_OPT_LOGICAL_XOR
|
||||
Fill = (0x0020), // DRAW_OPT_FILL_SHAPE
|
||||
Normal = 0x00,
|
||||
Clear = 0x01,
|
||||
Xor = 0x02,
|
||||
Fill = 0x04,
|
||||
Transparent = 0x08,
|
||||
Double = 0x10,
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user