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

"""
gl disable vertex array wrapper

"""

from OpenGL.GL import glDisableVertexAttribArray


[docs] def gl_disable_vertex_array(location: int): glDisableVertexAttribArray(location)