'''Autogenerated by get_gl_extensions script, do not edit!'''
from OpenGL import platform as _p, constants as _cs, arrays
from OpenGL.GL import glget
import ctypes
EXTENSION_NAME = 'GL_NV_shader_buffer_load'
def _f( function ):
    return _p.createFunction( function,_p.GL,'GL_NV_shader_buffer_load',False)
_p.unpack_constants( """GL_BUFFER_GPU_ADDRESS_NV 0x8F1D
GL_GPU_ADDRESS_NV 0x8F34
GL_MAX_SHADER_BUFFER_ADDRESS_NV 0x8F35""", globals())
@_f
@_p.types(None,_cs.GLenum,_cs.GLenum)
def glMakeBufferResidentNV( target,access ):pass
@_f
@_p.types(None,_cs.GLenum)
def glMakeBufferNonResidentNV( target ):pass
@_f
@_p.types(_cs.GLboolean,_cs.GLenum)
def glIsBufferResidentNV( target ):pass
@_f
@_p.types(None,_cs.GLuint,_cs.GLenum)
def glMakeNamedBufferResidentNV( buffer,access ):pass
@_f
@_p.types(None,_cs.GLuint)
def glMakeNamedBufferNonResidentNV( buffer ):pass
@_f
@_p.types(_cs.GLboolean,_cs.GLuint)
def glIsNamedBufferResidentNV( buffer ):pass
@_f
@_p.types(None,_cs.GLenum,_cs.GLenum,arrays.GLuint64Array)
def glGetBufferParameterui64vNV( target,pname,params ):pass
@_f
@_p.types(None,_cs.GLuint,_cs.GLenum,arrays.GLuint64Array)
def glGetNamedBufferParameterui64vNV( buffer,pname,params ):pass
@_f
@_p.types(None,_cs.GLenum,arrays.GLuint64Array)
def glGetIntegerui64vNV( value,result ):pass
@_f
@_p.types(None,_cs.GLint,_cs.GLuint64EXT)
def glUniformui64NV( location,value ):pass
@_f
@_p.types(None,_cs.GLint,_cs.GLsizei,arrays.GLuint64Array)
def glUniformui64vNV( location,count,value ):pass
@_f
@_p.types(None,_cs.GLuint,_cs.GLint,arrays.GLuint64Array)
def glGetUniformui64vNV( program,location,params ):pass
@_f
@_p.types(None,_cs.GLuint,_cs.GLint,_cs.GLuint64EXT)
def glProgramUniformui64NV( program,location,value ):pass
@_f
@_p.types(None,_cs.GLuint,_cs.GLint,_cs.GLsizei,arrays.GLuint64Array)
def glProgramUniformui64vNV( program,location,count,value ):pass


def glInitShaderBufferLoadNV():
    '''Return boolean indicating whether this extension is available'''
    from OpenGL import extensions
    return extensions.hasGLExtension( EXTENSION_NAME )
