summaryrefslogtreecommitdiff
path: root/src/bytecode/opcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode/opcodes.h')
-rw-r--r--src/bytecode/opcodes.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/bytecode/opcodes.h b/src/bytecode/opcodes.h
index 9565225..330489e 100644
--- a/src/bytecode/opcodes.h
+++ b/src/bytecode/opcodes.h
@@ -122,7 +122,13 @@ enum op_clear {
};
enum op_clip {
- CLIP_SHAPE = 0x0080,
+ CLIP_SHAPE_RECT = 0x0080,
+
+ CLIP_RECT_TOP_AUTO = 0x0008,
+ CLIP_RECT_RIGHT_AUTO = 0x0010,
+ CLIP_RECT_BOTTOM_AUTO = 0x0020,
+ CLIP_RECT_LEFT_AUTO = 0x0040,
+
CLIP_AUTO = 0x0000,
};