mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-02 07:57:29 +00:00
9f58ed0fea
Signed-off-by: Elias Naur <mail@eliasnaur.com>
56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
package ops
|
|
|
|
type OpType byte
|
|
|
|
// Start at a high number for easier debugging.
|
|
const FirstOpIndex = 200
|
|
|
|
const (
|
|
TypeBlockDef OpType = iota + FirstOpIndex
|
|
TypeBlock
|
|
TypeTransform
|
|
TypeLayer
|
|
TypeRedraw
|
|
TypeClip
|
|
TypeImage
|
|
TypeDraw
|
|
TypeColor
|
|
TypePointerHandler
|
|
TypeKeyHandler
|
|
TypeHideInput
|
|
TypePush
|
|
TypePop
|
|
)
|
|
|
|
const (
|
|
TypeBlockDefLen = 1 + 4 + 4
|
|
TypeBlockLen = 1 + 4 + 4 + 4
|
|
TypeTransformLen = 1 + 4*2
|
|
TypeLayerLen = 1
|
|
TypeRedrawLen = 1 + 8
|
|
TypeClipLen = 1
|
|
TypeImageLen = 1 + 4*4
|
|
TypeDrawLen = 1 + 4*4
|
|
TypeColorLen = 1 + 4
|
|
TypePointerHandlerLen = 1 + 1
|
|
TypeKeyHandlerLen = 1 + 1
|
|
TypeHideInputLen = 1
|
|
TypePushLen = 1
|
|
TypePopLen = 1
|
|
|
|
TypeBlockDefRefs = 0
|
|
TypeBlockRefs = 1
|
|
TypeTransformRefs = 0
|
|
TypeLayerRefs = 0
|
|
TypeRedrawRefs = 0
|
|
TypeClipRefs = 1
|
|
TypeImageRefs = 1
|
|
TypeDrawRefs = 0
|
|
TypeColorRefs = 0
|
|
TypePointerHandlerRefs = 2
|
|
TypeKeyHandlerRefs = 1
|
|
TypeHideInputRefs = 0
|
|
TypePushRefs = 0
|
|
TypePopRefs = 0
|
|
)
|