This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-02-01/mockenv/lib/python3.6/site-packages/kivy/graphics/stencil_instructions.pxd
2022-07-22 16:13:59 +05:30

19 lines
462 B
Cython

from kivy.graphics.instructions cimport Instruction
cdef get_stencil_state()
cdef void restore_stencil_state(dict state)
cdef void reset_stencil_state()
cdef class StencilPush(Instruction):
cdef int apply(self) except -1
cdef class StencilPop(Instruction):
cdef int apply(self) except -1
cdef class StencilUse(Instruction):
cdef int _op
cdef int apply(self) except -1
cdef class StencilUnUse(Instruction):
cdef int apply(self) except -1