Source code for picogl.backend.gl.wrappers.blending

"""
blending
"""

from OpenGL.raw.GL.VERSION.GL_1_0 import glBlendFunc


[docs] def gl_blend_func(src, dst): glBlendFunc(src, dst)