Source code for picogl.backend.gl.enums.legacy.cliping

from enum import IntEnum

from OpenGL.raw.GL.VERSION.GL_1_0 import GL_CLIP_PLANE0, GL_CLIP_PLANE1


[docs] class GLLegacyClipPlane(IntEnum): """Clipping Mode"""
[docs] CLIP_PLANE0 = GL_CLIP_PLANE0
[docs] CLIP_PLANE1 = GL_CLIP_PLANE1