'''OpenGL extension APPLE.client_storage

Automatically generated by the get_gl_extensions script, do not edit!
'''
from OpenGL import platform, constants, constant, arrays
from OpenGL import extensions
from OpenGL.GL import glget
import ctypes
EXTENSION_NAME = 'GL_APPLE_client_storage'
_DEPRECATED = False
GL_UNPACK_CLIENT_STORAGE_APPLE = constant.Constant( 'GL_UNPACK_CLIENT_STORAGE_APPLE', 0x85B2 )


def glInitClientStorageAPPLE():
    '''Return boolean indicating whether this extension is available'''
    return extensions.hasGLExtension( EXTENSION_NAME )
