struct OpenGL::Loader

Overview

Loads OpenGL functions dynamically at runtime and returns Proc instances to invoke them. The OpenGL functions are lazy-loaded.

Defined in:

opengl/loader.cr

Constant Summary

FUNCTION_COUNT = 657

Constructors

Instance Method Summary

Constructor Detail

def self.new(&get_proc_address : String -> Pointer(Void)) #

Creates the loader. The get_proc_address block is used to retrieve addresses of OpenGL functions. It is given a string that is the name of the OpenGL function to lookup. The block must return a pointer to the function corresponding to the name. If a function is unavailable, the block should return a null pointer.


[View source]

Instance Method Detail

def active_shader_program : Proc #

Retrieves a Proc for the OpenGL function glActiveShaderProgram. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def active_shader_program? #

Checks if the OpenGL function glActiveShaderProgram is loaded.


[View source]
def active_texture : Proc #

Retrieves a Proc for the OpenGL function glActiveTexture. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def active_texture? #

Checks if the OpenGL function glActiveTexture is loaded.


[View source]
def attach_shader : Proc #

Retrieves a Proc for the OpenGL function glAttachShader. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def attach_shader? #

Checks if the OpenGL function glAttachShader is loaded.


[View source]
def begin_conditional_render : Proc #

Retrieves a Proc for the OpenGL function glBeginConditionalRender. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def begin_conditional_render? #

Checks if the OpenGL function glBeginConditionalRender is loaded.


[View source]
def begin_query : Proc #

Retrieves a Proc for the OpenGL function glBeginQuery. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def begin_query? #

Checks if the OpenGL function glBeginQuery is loaded.


[View source]
def begin_query_indexed : Proc #

Retrieves a Proc for the OpenGL function glBeginQueryIndexed. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def begin_query_indexed? #

Checks if the OpenGL function glBeginQueryIndexed is loaded.


[View source]
def begin_transform_feedback : Proc #

Retrieves a Proc for the OpenGL function glBeginTransformFeedback. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def begin_transform_feedback? #

Checks if the OpenGL function glBeginTransformFeedback is loaded.


[View source]
def bind_attrib_location : Proc #

Retrieves a Proc for the OpenGL function glBindAttribLocation. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_attrib_location? #

Checks if the OpenGL function glBindAttribLocation is loaded.


[View source]
def bind_buffer : Proc #

Retrieves a Proc for the OpenGL function glBindBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_buffer? #

Checks if the OpenGL function glBindBuffer is loaded.


[View source]
def bind_buffer_base : Proc #

Retrieves a Proc for the OpenGL function glBindBufferBase. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_buffer_base? #

Checks if the OpenGL function glBindBufferBase is loaded.


[View source]
def bind_buffer_range : Proc #

Retrieves a Proc for the OpenGL function glBindBufferRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_buffer_range? #

Checks if the OpenGL function glBindBufferRange is loaded.


[View source]
def bind_buffers_base : Proc #

Retrieves a Proc for the OpenGL function glBindBuffersBase. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_buffers_base? #

Checks if the OpenGL function glBindBuffersBase is loaded.


[View source]
def bind_buffers_range : Proc #

Retrieves a Proc for the OpenGL function glBindBuffersRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_buffers_range? #

Checks if the OpenGL function glBindBuffersRange is loaded.


[View source]
def bind_frag_data_location : Proc #

Retrieves a Proc for the OpenGL function glBindFragDataLocation. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_frag_data_location? #

Checks if the OpenGL function glBindFragDataLocation is loaded.


[View source]
def bind_frag_data_location_indexed : Proc #

Retrieves a Proc for the OpenGL function glBindFragDataLocationIndexed. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_frag_data_location_indexed? #

Checks if the OpenGL function glBindFragDataLocationIndexed is loaded.


[View source]
def bind_framebuffer : Proc #

Retrieves a Proc for the OpenGL function glBindFramebuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_framebuffer? #

Checks if the OpenGL function glBindFramebuffer is loaded.


[View source]
def bind_image_texture : Proc #

Retrieves a Proc for the OpenGL function glBindImageTexture. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_image_texture? #

Checks if the OpenGL function glBindImageTexture is loaded.


[View source]
def bind_image_textures : Proc #

Retrieves a Proc for the OpenGL function glBindImageTextures. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_image_textures? #

Checks if the OpenGL function glBindImageTextures is loaded.


[View source]
def bind_program_pipeline : Proc #

Retrieves a Proc for the OpenGL function glBindProgramPipeline. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_program_pipeline? #

Checks if the OpenGL function glBindProgramPipeline is loaded.


[View source]
def bind_renderbuffer : Proc #

Retrieves a Proc for the OpenGL function glBindRenderbuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_renderbuffer? #

Checks if the OpenGL function glBindRenderbuffer is loaded.


[View source]
def bind_sampler : Proc #

Retrieves a Proc for the OpenGL function glBindSampler. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_sampler? #

Checks if the OpenGL function glBindSampler is loaded.


[View source]
def bind_samplers : Proc #

Retrieves a Proc for the OpenGL function glBindSamplers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_samplers? #

Checks if the OpenGL function glBindSamplers is loaded.


[View source]
def bind_texture : Proc #

Retrieves a Proc for the OpenGL function glBindTexture. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_texture? #

Checks if the OpenGL function glBindTexture is loaded.


[View source]
def bind_texture_unit : Proc #

Retrieves a Proc for the OpenGL function glBindTextureUnit. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_texture_unit? #

Checks if the OpenGL function glBindTextureUnit is loaded.


[View source]
def bind_textures : Proc #

Retrieves a Proc for the OpenGL function glBindTextures. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_textures? #

Checks if the OpenGL function glBindTextures is loaded.


[View source]
def bind_transform_feedback : Proc #

Retrieves a Proc for the OpenGL function glBindTransformFeedback. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_transform_feedback? #

Checks if the OpenGL function glBindTransformFeedback is loaded.


[View source]
def bind_vertex_array : Proc #

Retrieves a Proc for the OpenGL function glBindVertexArray. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_vertex_array? #

Checks if the OpenGL function glBindVertexArray is loaded.


[View source]
def bind_vertex_buffer : Proc #

Retrieves a Proc for the OpenGL function glBindVertexBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_vertex_buffer? #

Checks if the OpenGL function glBindVertexBuffer is loaded.


[View source]
def bind_vertex_buffers : Proc #

Retrieves a Proc for the OpenGL function glBindVertexBuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def bind_vertex_buffers? #

Checks if the OpenGL function glBindVertexBuffers is loaded.


[View source]
def blend_color : Proc #

Retrieves a Proc for the OpenGL function glBlendColor. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blend_color? #

Checks if the OpenGL function glBlendColor is loaded.


[View source]
def blend_equation : Proc #

Retrieves a Proc for the OpenGL function glBlendEquation. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blend_equation? #

Checks if the OpenGL function glBlendEquation is loaded.


[View source]
def blend_equation_i : Proc #

Retrieves a Proc for the OpenGL function glBlendEquationi. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blend_equation_i? #

Checks if the OpenGL function glBlendEquationi is loaded.


[View source]
def blend_equation_separate : Proc #

Retrieves a Proc for the OpenGL function glBlendEquationSeparate. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blend_equation_separate? #

Checks if the OpenGL function glBlendEquationSeparate is loaded.


[View source]
def blend_equation_separate_i : Proc #

Retrieves a Proc for the OpenGL function glBlendEquationSeparatei. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blend_equation_separate_i? #

Checks if the OpenGL function glBlendEquationSeparatei is loaded.


[View source]
def blend_func : Proc #

Retrieves a Proc for the OpenGL function glBlendFunc. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blend_func? #

Checks if the OpenGL function glBlendFunc is loaded.


[View source]
def blend_func_i : Proc #

Retrieves a Proc for the OpenGL function glBlendFunci. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blend_func_i? #

Checks if the OpenGL function glBlendFunci is loaded.


[View source]
def blend_func_separate : Proc #

Retrieves a Proc for the OpenGL function glBlendFuncSeparate. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blend_func_separate? #

Checks if the OpenGL function glBlendFuncSeparate is loaded.


[View source]
def blend_func_separate_i : Proc #

Retrieves a Proc for the OpenGL function glBlendFuncSeparatei. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blend_func_separate_i? #

Checks if the OpenGL function glBlendFuncSeparatei is loaded.


[View source]
def blit_framebuffer : Proc #

Retrieves a Proc for the OpenGL function glBlitFramebuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blit_framebuffer? #

Checks if the OpenGL function glBlitFramebuffer is loaded.


[View source]
def blit_named_framebuffer : Proc #

Retrieves a Proc for the OpenGL function glBlitNamedFramebuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def blit_named_framebuffer? #

Checks if the OpenGL function glBlitNamedFramebuffer is loaded.


[View source]
def buffer_data : Proc #

Retrieves a Proc for the OpenGL function glBufferData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def buffer_data? #

Checks if the OpenGL function glBufferData is loaded.


[View source]
def buffer_storage : Proc #

Retrieves a Proc for the OpenGL function glBufferStorage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def buffer_storage? #

Checks if the OpenGL function glBufferStorage is loaded.


[View source]
def buffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glBufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def buffer_sub_data? #

Checks if the OpenGL function glBufferSubData is loaded.


[View source]
def check_framebuffer_status : Proc #

Retrieves a Proc for the OpenGL function glCheckFramebufferStatus. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def check_framebuffer_status? #

Checks if the OpenGL function glCheckFramebufferStatus is loaded.


[View source]
def check_named_framebuffer_status : Proc #

Retrieves a Proc for the OpenGL function glCheckNamedFramebufferStatus. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def check_named_framebuffer_status? #

Checks if the OpenGL function glCheckNamedFramebufferStatus is loaded.


[View source]
def clamp_color : Proc #

Retrieves a Proc for the OpenGL function glClampColor. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clamp_color? #

Checks if the OpenGL function glClampColor is loaded.


[View source]
def clear : Proc #

Retrieves a Proc for the OpenGL function glClear. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear? #

Checks if the OpenGL function glClear is loaded.


[View source]
def clear_buffer_data : Proc #

Retrieves a Proc for the OpenGL function glClearBufferData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_buffer_data? #

Checks if the OpenGL function glClearBufferData is loaded.


[View source]
def clear_buffer_fi : Proc #

Retrieves a Proc for the OpenGL function glClearBufferfi. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_buffer_fi? #

Checks if the OpenGL function glClearBufferfi is loaded.


[View source]
def clear_buffer_fv : Proc #

Retrieves a Proc for the OpenGL function glClearBufferfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_buffer_fv? #

Checks if the OpenGL function glClearBufferfv is loaded.


[View source]
def clear_buffer_iv : Proc #

Retrieves a Proc for the OpenGL function glClearBufferiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_buffer_iv? #

Checks if the OpenGL function glClearBufferiv is loaded.


[View source]
def clear_buffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glClearBufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_buffer_sub_data? #

Checks if the OpenGL function glClearBufferSubData is loaded.


[View source]
def clear_buffer_uiv : Proc #

Retrieves a Proc for the OpenGL function glClearBufferuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_buffer_uiv? #

Checks if the OpenGL function glClearBufferuiv is loaded.


[View source]
def clear_color : Proc #

Retrieves a Proc for the OpenGL function glClearColor. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_color? #

Checks if the OpenGL function glClearColor is loaded.


[View source]
def clear_depth : Proc #

Retrieves a Proc for the OpenGL function glClearDepth. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_depth? #

Checks if the OpenGL function glClearDepth is loaded.


[View source]
def clear_depth_f : Proc #

Retrieves a Proc for the OpenGL function glClearDepthf. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_depth_f? #

Checks if the OpenGL function glClearDepthf is loaded.


[View source]
def clear_named_buffer_data : Proc #

Retrieves a Proc for the OpenGL function glClearNamedBufferData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_named_buffer_data? #

Checks if the OpenGL function glClearNamedBufferData is loaded.


[View source]
def clear_named_buffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glClearNamedBufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_named_buffer_sub_data? #

Checks if the OpenGL function glClearNamedBufferSubData is loaded.


[View source]
def clear_named_framebuffer_fi : Proc #

Retrieves a Proc for the OpenGL function glClearNamedFramebufferfi. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_named_framebuffer_fi? #

Checks if the OpenGL function glClearNamedFramebufferfi is loaded.


[View source]
def clear_named_framebuffer_fv : Proc #

Retrieves a Proc for the OpenGL function glClearNamedFramebufferfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_named_framebuffer_fv? #

Checks if the OpenGL function glClearNamedFramebufferfv is loaded.


[View source]
def clear_named_framebuffer_iv : Proc #

Retrieves a Proc for the OpenGL function glClearNamedFramebufferiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_named_framebuffer_iv? #

Checks if the OpenGL function glClearNamedFramebufferiv is loaded.


[View source]
def clear_named_framebuffer_uiv : Proc #

Retrieves a Proc for the OpenGL function glClearNamedFramebufferuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_named_framebuffer_uiv? #

Checks if the OpenGL function glClearNamedFramebufferuiv is loaded.


[View source]
def clear_stencil : Proc #

Retrieves a Proc for the OpenGL function glClearStencil. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_stencil? #

Checks if the OpenGL function glClearStencil is loaded.


[View source]
def clear_tex_image : Proc #

Retrieves a Proc for the OpenGL function glClearTexImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_tex_image? #

Checks if the OpenGL function glClearTexImage is loaded.


[View source]
def clear_tex_sub_image : Proc #

Retrieves a Proc for the OpenGL function glClearTexSubImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clear_tex_sub_image? #

Checks if the OpenGL function glClearTexSubImage is loaded.


[View source]
def client_wait_sync : Proc #

Retrieves a Proc for the OpenGL function glClientWaitSync. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def client_wait_sync? #

Checks if the OpenGL function glClientWaitSync is loaded.


[View source]
def clip_control : Proc #

Retrieves a Proc for the OpenGL function glClipControl. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def clip_control? #

Checks if the OpenGL function glClipControl is loaded.


[View source]
def color_mask : Proc #

Retrieves a Proc for the OpenGL function glColorMask. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def color_mask? #

Checks if the OpenGL function glColorMask is loaded.


[View source]
def color_mask_i : Proc #

Retrieves a Proc for the OpenGL function glColorMaski. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def color_mask_i? #

Checks if the OpenGL function glColorMaski is loaded.


[View source]
def compile_shader : Proc #

Retrieves a Proc for the OpenGL function glCompileShader. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compile_shader? #

Checks if the OpenGL function glCompileShader is loaded.


[View source]
def compressed_tex_image_1d : Proc #

Retrieves a Proc for the OpenGL function glCompressedTexImage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compressed_tex_image_1d? #

Checks if the OpenGL function glCompressedTexImage1D is loaded.


[View source]
def compressed_tex_image_2d : Proc #

Retrieves a Proc for the OpenGL function glCompressedTexImage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compressed_tex_image_2d? #

Checks if the OpenGL function glCompressedTexImage2D is loaded.


[View source]
def compressed_tex_image_3d : Proc #

Retrieves a Proc for the OpenGL function glCompressedTexImage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compressed_tex_image_3d? #

Checks if the OpenGL function glCompressedTexImage3D is loaded.


[View source]
def compressed_tex_sub_image_1d : Proc #

Retrieves a Proc for the OpenGL function glCompressedTexSubImage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compressed_tex_sub_image_1d? #

Checks if the OpenGL function glCompressedTexSubImage1D is loaded.


[View source]
def compressed_tex_sub_image_2d : Proc #

Retrieves a Proc for the OpenGL function glCompressedTexSubImage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compressed_tex_sub_image_2d? #

Checks if the OpenGL function glCompressedTexSubImage2D is loaded.


[View source]
def compressed_tex_sub_image_3d : Proc #

Retrieves a Proc for the OpenGL function glCompressedTexSubImage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compressed_tex_sub_image_3d? #

Checks if the OpenGL function glCompressedTexSubImage3D is loaded.


[View source]
def compressed_texture_sub_image_1d : Proc #

Retrieves a Proc for the OpenGL function glCompressedTextureSubImage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compressed_texture_sub_image_1d? #

Checks if the OpenGL function glCompressedTextureSubImage1D is loaded.


[View source]
def compressed_texture_sub_image_2d : Proc #

Retrieves a Proc for the OpenGL function glCompressedTextureSubImage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compressed_texture_sub_image_2d? #

Checks if the OpenGL function glCompressedTextureSubImage2D is loaded.


[View source]
def compressed_texture_sub_image_3d : Proc #

Retrieves a Proc for the OpenGL function glCompressedTextureSubImage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def compressed_texture_sub_image_3d? #

Checks if the OpenGL function glCompressedTextureSubImage3D is loaded.


[View source]
def copy_buffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glCopyBufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_buffer_sub_data? #

Checks if the OpenGL function glCopyBufferSubData is loaded.


[View source]
def copy_image_sub_data : Proc #

Retrieves a Proc for the OpenGL function glCopyImageSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_image_sub_data? #

Checks if the OpenGL function glCopyImageSubData is loaded.


[View source]
def copy_named_buffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glCopyNamedBufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_named_buffer_sub_data? #

Checks if the OpenGL function glCopyNamedBufferSubData is loaded.


[View source]
def copy_tex_image_1d : Proc #

Retrieves a Proc for the OpenGL function glCopyTexImage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_tex_image_1d? #

Checks if the OpenGL function glCopyTexImage1D is loaded.


[View source]
def copy_tex_image_2d : Proc #

Retrieves a Proc for the OpenGL function glCopyTexImage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_tex_image_2d? #

Checks if the OpenGL function glCopyTexImage2D is loaded.


[View source]
def copy_tex_sub_image_1d : Proc #

Retrieves a Proc for the OpenGL function glCopyTexSubImage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_tex_sub_image_1d? #

Checks if the OpenGL function glCopyTexSubImage1D is loaded.


[View source]
def copy_tex_sub_image_2d : Proc #

Retrieves a Proc for the OpenGL function glCopyTexSubImage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_tex_sub_image_2d? #

Checks if the OpenGL function glCopyTexSubImage2D is loaded.


[View source]
def copy_tex_sub_image_3d : Proc #

Retrieves a Proc for the OpenGL function glCopyTexSubImage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_tex_sub_image_3d? #

Checks if the OpenGL function glCopyTexSubImage3D is loaded.


[View source]
def copy_texture_sub_image_1d : Proc #

Retrieves a Proc for the OpenGL function glCopyTextureSubImage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_texture_sub_image_1d? #

Checks if the OpenGL function glCopyTextureSubImage1D is loaded.


[View source]
def copy_texture_sub_image_2d : Proc #

Retrieves a Proc for the OpenGL function glCopyTextureSubImage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_texture_sub_image_2d? #

Checks if the OpenGL function glCopyTextureSubImage2D is loaded.


[View source]
def copy_texture_sub_image_3d : Proc #

Retrieves a Proc for the OpenGL function glCopyTextureSubImage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def copy_texture_sub_image_3d? #

Checks if the OpenGL function glCopyTextureSubImage3D is loaded.


[View source]
def create_buffers : Proc #

Retrieves a Proc for the OpenGL function glCreateBuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_buffers? #

Checks if the OpenGL function glCreateBuffers is loaded.


[View source]
def create_framebuffers : Proc #

Retrieves a Proc for the OpenGL function glCreateFramebuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_framebuffers? #

Checks if the OpenGL function glCreateFramebuffers is loaded.


[View source]
def create_program : Proc #

Retrieves a Proc for the OpenGL function glCreateProgram. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_program? #

Checks if the OpenGL function glCreateProgram is loaded.


[View source]
def create_program_pipelines : Proc #

Retrieves a Proc for the OpenGL function glCreateProgramPipelines. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_program_pipelines? #

Checks if the OpenGL function glCreateProgramPipelines is loaded.


[View source]
def create_queries : Proc #

Retrieves a Proc for the OpenGL function glCreateQueries. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_queries? #

Checks if the OpenGL function glCreateQueries is loaded.


[View source]
def create_renderbuffers : Proc #

Retrieves a Proc for the OpenGL function glCreateRenderbuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_renderbuffers? #

Checks if the OpenGL function glCreateRenderbuffers is loaded.


[View source]
def create_samplers : Proc #

Retrieves a Proc for the OpenGL function glCreateSamplers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_samplers? #

Checks if the OpenGL function glCreateSamplers is loaded.


[View source]
def create_shader : Proc #

Retrieves a Proc for the OpenGL function glCreateShader. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_shader? #

Checks if the OpenGL function glCreateShader is loaded.


[View source]
def create_shader_program_v : Proc #

Retrieves a Proc for the OpenGL function glCreateShaderProgramv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_shader_program_v? #

Checks if the OpenGL function glCreateShaderProgramv is loaded.


[View source]
def create_textures : Proc #

Retrieves a Proc for the OpenGL function glCreateTextures. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_textures? #

Checks if the OpenGL function glCreateTextures is loaded.


[View source]
def create_transform_feedbacks : Proc #

Retrieves a Proc for the OpenGL function glCreateTransformFeedbacks. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_transform_feedbacks? #

Checks if the OpenGL function glCreateTransformFeedbacks is loaded.


[View source]
def create_vertex_arrays : Proc #

Retrieves a Proc for the OpenGL function glCreateVertexArrays. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def create_vertex_arrays? #

Checks if the OpenGL function glCreateVertexArrays is loaded.


[View source]
def cull_face : Proc #

Retrieves a Proc for the OpenGL function glCullFace. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def cull_face? #

Checks if the OpenGL function glCullFace is loaded.


[View source]
def debug_message_callback : Proc #

Retrieves a Proc for the OpenGL function glDebugMessageCallback. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def debug_message_callback? #

Checks if the OpenGL function glDebugMessageCallback is loaded.


[View source]
def debug_message_control : Proc #

Retrieves a Proc for the OpenGL function glDebugMessageControl. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def debug_message_control? #

Checks if the OpenGL function glDebugMessageControl is loaded.


[View source]
def debug_message_insert : Proc #

Retrieves a Proc for the OpenGL function glDebugMessageInsert. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def debug_message_insert? #

Checks if the OpenGL function glDebugMessageInsert is loaded.


[View source]
def delete_buffers : Proc #

Retrieves a Proc for the OpenGL function glDeleteBuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_buffers? #

Checks if the OpenGL function glDeleteBuffers is loaded.


[View source]
def delete_framebuffers : Proc #

Retrieves a Proc for the OpenGL function glDeleteFramebuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_framebuffers? #

Checks if the OpenGL function glDeleteFramebuffers is loaded.


[View source]
def delete_program : Proc #

Retrieves a Proc for the OpenGL function glDeleteProgram. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_program? #

Checks if the OpenGL function glDeleteProgram is loaded.


[View source]
def delete_program_pipelines : Proc #

Retrieves a Proc for the OpenGL function glDeleteProgramPipelines. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_program_pipelines? #

Checks if the OpenGL function glDeleteProgramPipelines is loaded.


[View source]
def delete_queries : Proc #

Retrieves a Proc for the OpenGL function glDeleteQueries. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_queries? #

Checks if the OpenGL function glDeleteQueries is loaded.


[View source]
def delete_renderbuffers : Proc #

Retrieves a Proc for the OpenGL function glDeleteRenderbuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_renderbuffers? #

Checks if the OpenGL function glDeleteRenderbuffers is loaded.


[View source]
def delete_samplers : Proc #

Retrieves a Proc for the OpenGL function glDeleteSamplers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_samplers? #

Checks if the OpenGL function glDeleteSamplers is loaded.


[View source]
def delete_shader : Proc #

Retrieves a Proc for the OpenGL function glDeleteShader. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_shader? #

Checks if the OpenGL function glDeleteShader is loaded.


[View source]
def delete_sync : Proc #

Retrieves a Proc for the OpenGL function glDeleteSync. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_sync? #

Checks if the OpenGL function glDeleteSync is loaded.


[View source]
def delete_textures : Proc #

Retrieves a Proc for the OpenGL function glDeleteTextures. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_textures? #

Checks if the OpenGL function glDeleteTextures is loaded.


[View source]
def delete_transform_feedbacks : Proc #

Retrieves a Proc for the OpenGL function glDeleteTransformFeedbacks. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_transform_feedbacks? #

Checks if the OpenGL function glDeleteTransformFeedbacks is loaded.


[View source]
def delete_vertex_arrays : Proc #

Retrieves a Proc for the OpenGL function glDeleteVertexArrays. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def delete_vertex_arrays? #

Checks if the OpenGL function glDeleteVertexArrays is loaded.


[View source]
def depth_func : Proc #

Retrieves a Proc for the OpenGL function glDepthFunc. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def depth_func? #

Checks if the OpenGL function glDepthFunc is loaded.


[View source]
def depth_mask : Proc #

Retrieves a Proc for the OpenGL function glDepthMask. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def depth_mask? #

Checks if the OpenGL function glDepthMask is loaded.


[View source]
def depth_range : Proc #

Retrieves a Proc for the OpenGL function glDepthRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def depth_range? #

Checks if the OpenGL function glDepthRange is loaded.


[View source]
def depth_range_array_v : Proc #

Retrieves a Proc for the OpenGL function glDepthRangeArrayv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def depth_range_array_v? #

Checks if the OpenGL function glDepthRangeArrayv is loaded.


[View source]
def depth_range_f : Proc #

Retrieves a Proc for the OpenGL function glDepthRangef. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def depth_range_f? #

Checks if the OpenGL function glDepthRangef is loaded.


[View source]
def depth_range_indexed : Proc #

Retrieves a Proc for the OpenGL function glDepthRangeIndexed. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def depth_range_indexed? #

Checks if the OpenGL function glDepthRangeIndexed is loaded.


[View source]
def detach_shader : Proc #

Retrieves a Proc for the OpenGL function glDetachShader. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def detach_shader? #

Checks if the OpenGL function glDetachShader is loaded.


[View source]
def disable : Proc #

Retrieves a Proc for the OpenGL function glDisable. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def disable? #

Checks if the OpenGL function glDisable is loaded.


[View source]
def disable_i : Proc #

Retrieves a Proc for the OpenGL function glDisablei. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def disable_i? #

Checks if the OpenGL function glDisablei is loaded.


[View source]
def disable_vertex_array_attrib : Proc #

Retrieves a Proc for the OpenGL function glDisableVertexArrayAttrib. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def disable_vertex_array_attrib? #

Checks if the OpenGL function glDisableVertexArrayAttrib is loaded.


[View source]
def disable_vertex_attrib_array : Proc #

Retrieves a Proc for the OpenGL function glDisableVertexAttribArray. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def disable_vertex_attrib_array? #

Checks if the OpenGL function glDisableVertexAttribArray is loaded.


[View source]
def dispatch_compute : Proc #

Retrieves a Proc for the OpenGL function glDispatchCompute. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def dispatch_compute? #

Checks if the OpenGL function glDispatchCompute is loaded.


[View source]
def dispatch_compute_indirect : Proc #

Retrieves a Proc for the OpenGL function glDispatchComputeIndirect. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def dispatch_compute_indirect? #

Checks if the OpenGL function glDispatchComputeIndirect is loaded.


[View source]
def draw_arrays : Proc #

Retrieves a Proc for the OpenGL function glDrawArrays. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_arrays? #

Checks if the OpenGL function glDrawArrays is loaded.


[View source]
def draw_arrays_indirect : Proc #

Retrieves a Proc for the OpenGL function glDrawArraysIndirect. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_arrays_indirect? #

Checks if the OpenGL function glDrawArraysIndirect is loaded.


[View source]
def draw_arrays_instanced : Proc #

Retrieves a Proc for the OpenGL function glDrawArraysInstanced. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_arrays_instanced? #

Checks if the OpenGL function glDrawArraysInstanced is loaded.


[View source]
def draw_arrays_instanced_base_instance : Proc #

Retrieves a Proc for the OpenGL function glDrawArraysInstancedBaseInstance. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_arrays_instanced_base_instance? #

Checks if the OpenGL function glDrawArraysInstancedBaseInstance is loaded.


[View source]
def draw_buffer : Proc #

Retrieves a Proc for the OpenGL function glDrawBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_buffer? #

Checks if the OpenGL function glDrawBuffer is loaded.


[View source]
def draw_buffers : Proc #

Retrieves a Proc for the OpenGL function glDrawBuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_buffers? #

Checks if the OpenGL function glDrawBuffers is loaded.


[View source]
def draw_elements : Proc #

Retrieves a Proc for the OpenGL function glDrawElements. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_elements? #

Checks if the OpenGL function glDrawElements is loaded.


[View source]
def draw_elements_base_vertex : Proc #

Retrieves a Proc for the OpenGL function glDrawElementsBaseVertex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_elements_base_vertex? #

Checks if the OpenGL function glDrawElementsBaseVertex is loaded.


[View source]
def draw_elements_indirect : Proc #

Retrieves a Proc for the OpenGL function glDrawElementsIndirect. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_elements_indirect? #

Checks if the OpenGL function glDrawElementsIndirect is loaded.


[View source]
def draw_elements_instanced : Proc #

Retrieves a Proc for the OpenGL function glDrawElementsInstanced. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_elements_instanced? #

Checks if the OpenGL function glDrawElementsInstanced is loaded.


[View source]
def draw_elements_instanced_base_instance : Proc #

Retrieves a Proc for the OpenGL function glDrawElementsInstancedBaseInstance. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_elements_instanced_base_instance? #

Checks if the OpenGL function glDrawElementsInstancedBaseInstance is loaded.


[View source]
def draw_elements_instanced_base_vertex : Proc #

Retrieves a Proc for the OpenGL function glDrawElementsInstancedBaseVertex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_elements_instanced_base_vertex? #

Checks if the OpenGL function glDrawElementsInstancedBaseVertex is loaded.


[View source]
def draw_elements_instanced_base_vertex_base_instance : Proc #

Retrieves a Proc for the OpenGL function glDrawElementsInstancedBaseVertexBaseInstance. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_elements_instanced_base_vertex_base_instance? #

Checks if the OpenGL function glDrawElementsInstancedBaseVertexBaseInstance is loaded.


[View source]
def draw_range_elements : Proc #

Retrieves a Proc for the OpenGL function glDrawRangeElements. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_range_elements? #

Checks if the OpenGL function glDrawRangeElements is loaded.


[View source]
def draw_range_elements_base_vertex : Proc #

Retrieves a Proc for the OpenGL function glDrawRangeElementsBaseVertex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_range_elements_base_vertex? #

Checks if the OpenGL function glDrawRangeElementsBaseVertex is loaded.


[View source]
def draw_transform_feedback : Proc #

Retrieves a Proc for the OpenGL function glDrawTransformFeedback. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_transform_feedback? #

Checks if the OpenGL function glDrawTransformFeedback is loaded.


[View source]
def draw_transform_feedback_instanced : Proc #

Retrieves a Proc for the OpenGL function glDrawTransformFeedbackInstanced. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_transform_feedback_instanced? #

Checks if the OpenGL function glDrawTransformFeedbackInstanced is loaded.


[View source]
def draw_transform_feedback_stream : Proc #

Retrieves a Proc for the OpenGL function glDrawTransformFeedbackStream. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_transform_feedback_stream? #

Checks if the OpenGL function glDrawTransformFeedbackStream is loaded.


[View source]
def draw_transform_feedback_stream_instanced : Proc #

Retrieves a Proc for the OpenGL function glDrawTransformFeedbackStreamInstanced. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def draw_transform_feedback_stream_instanced? #

Checks if the OpenGL function glDrawTransformFeedbackStreamInstanced is loaded.


[View source]
def enable : Proc #

Retrieves a Proc for the OpenGL function glEnable. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def enable? #

Checks if the OpenGL function glEnable is loaded.


[View source]
def enable_i : Proc #

Retrieves a Proc for the OpenGL function glEnablei. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def enable_i? #

Checks if the OpenGL function glEnablei is loaded.


[View source]
def enable_vertex_array_attrib : Proc #

Retrieves a Proc for the OpenGL function glEnableVertexArrayAttrib. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def enable_vertex_array_attrib? #

Checks if the OpenGL function glEnableVertexArrayAttrib is loaded.


[View source]
def enable_vertex_attrib_array : Proc #

Retrieves a Proc for the OpenGL function glEnableVertexAttribArray. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def enable_vertex_attrib_array? #

Checks if the OpenGL function glEnableVertexAttribArray is loaded.


[View source]
def end_conditional_render : Proc #

Retrieves a Proc for the OpenGL function glEndConditionalRender. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def end_conditional_render? #

Checks if the OpenGL function glEndConditionalRender is loaded.


[View source]
def end_query : Proc #

Retrieves a Proc for the OpenGL function glEndQuery. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def end_query? #

Checks if the OpenGL function glEndQuery is loaded.


[View source]
def end_query_indexed : Proc #

Retrieves a Proc for the OpenGL function glEndQueryIndexed. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def end_query_indexed? #

Checks if the OpenGL function glEndQueryIndexed is loaded.


[View source]
def end_transform_feedback : Proc #

Retrieves a Proc for the OpenGL function glEndTransformFeedback. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def end_transform_feedback? #

Checks if the OpenGL function glEndTransformFeedback is loaded.


[View source]
def fence_sync : Proc #

Retrieves a Proc for the OpenGL function glFenceSync. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def fence_sync? #

Checks if the OpenGL function glFenceSync is loaded.


[View source]
def finish : Proc #

Retrieves a Proc for the OpenGL function glFinish. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def finish? #

Checks if the OpenGL function glFinish is loaded.


[View source]
def flush : Proc #

Retrieves a Proc for the OpenGL function glFlush. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def flush? #

Checks if the OpenGL function glFlush is loaded.


[View source]
def flush_mapped_buffer_range : Proc #

Retrieves a Proc for the OpenGL function glFlushMappedBufferRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def flush_mapped_buffer_range? #

Checks if the OpenGL function glFlushMappedBufferRange is loaded.


[View source]
def flush_mapped_named_buffer_range : Proc #

Retrieves a Proc for the OpenGL function glFlushMappedNamedBufferRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def flush_mapped_named_buffer_range? #

Checks if the OpenGL function glFlushMappedNamedBufferRange is loaded.


[View source]
def framebuffer_parameter_i : Proc #

Retrieves a Proc for the OpenGL function glFramebufferParameteri. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def framebuffer_parameter_i? #

Checks if the OpenGL function glFramebufferParameteri is loaded.


[View source]
def framebuffer_renderbuffer : Proc #

Retrieves a Proc for the OpenGL function glFramebufferRenderbuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def framebuffer_renderbuffer? #

Checks if the OpenGL function glFramebufferRenderbuffer is loaded.


[View source]
def framebuffer_texture : Proc #

Retrieves a Proc for the OpenGL function glFramebufferTexture. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def framebuffer_texture? #

Checks if the OpenGL function glFramebufferTexture is loaded.


[View source]
def framebuffer_texture_1d : Proc #

Retrieves a Proc for the OpenGL function glFramebufferTexture1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def framebuffer_texture_1d? #

Checks if the OpenGL function glFramebufferTexture1D is loaded.


[View source]
def framebuffer_texture_2d : Proc #

Retrieves a Proc for the OpenGL function glFramebufferTexture2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def framebuffer_texture_2d? #

Checks if the OpenGL function glFramebufferTexture2D is loaded.


[View source]
def framebuffer_texture_3d : Proc #

Retrieves a Proc for the OpenGL function glFramebufferTexture3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def framebuffer_texture_3d? #

Checks if the OpenGL function glFramebufferTexture3D is loaded.


[View source]
def framebuffer_texture_layer : Proc #

Retrieves a Proc for the OpenGL function glFramebufferTextureLayer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def framebuffer_texture_layer? #

Checks if the OpenGL function glFramebufferTextureLayer is loaded.


[View source]
def front_face : Proc #

Retrieves a Proc for the OpenGL function glFrontFace. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def front_face? #

Checks if the OpenGL function glFrontFace is loaded.


[View source]
def gen_buffers : Proc #

Retrieves a Proc for the OpenGL function glGenBuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def gen_buffers? #

Checks if the OpenGL function glGenBuffers is loaded.


[View source]
def gen_framebuffers : Proc #

Retrieves a Proc for the OpenGL function glGenFramebuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def gen_framebuffers? #

Checks if the OpenGL function glGenFramebuffers is loaded.


[View source]
def gen_program_pipelines : Proc #

Retrieves a Proc for the OpenGL function glGenProgramPipelines. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def gen_program_pipelines? #

Checks if the OpenGL function glGenProgramPipelines is loaded.


[View source]
def gen_queries : Proc #

Retrieves a Proc for the OpenGL function glGenQueries. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def gen_queries? #

Checks if the OpenGL function glGenQueries is loaded.


[View source]
def gen_renderbuffers : Proc #

Retrieves a Proc for the OpenGL function glGenRenderbuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def gen_renderbuffers? #

Checks if the OpenGL function glGenRenderbuffers is loaded.


[View source]
def gen_samplers : Proc #

Retrieves a Proc for the OpenGL function glGenSamplers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def gen_samplers? #

Checks if the OpenGL function glGenSamplers is loaded.


[View source]
def gen_textures : Proc #

Retrieves a Proc for the OpenGL function glGenTextures. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def gen_textures? #

Checks if the OpenGL function glGenTextures is loaded.


[View source]
def gen_transform_feedbacks : Proc #

Retrieves a Proc for the OpenGL function glGenTransformFeedbacks. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def gen_transform_feedbacks? #

Checks if the OpenGL function glGenTransformFeedbacks is loaded.


[View source]
def gen_vertex_arrays : Proc #

Retrieves a Proc for the OpenGL function glGenVertexArrays. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def gen_vertex_arrays? #

Checks if the OpenGL function glGenVertexArrays is loaded.


[View source]
def generate_mipmap : Proc #

Retrieves a Proc for the OpenGL function glGenerateMipmap. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def generate_mipmap? #

Checks if the OpenGL function glGenerateMipmap is loaded.


[View source]
def generate_texture_mipmap : Proc #

Retrieves a Proc for the OpenGL function glGenerateTextureMipmap. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def generate_texture_mipmap? #

Checks if the OpenGL function glGenerateTextureMipmap is loaded.


[View source]
def get_active_atomic_counter_buffer_iv : Proc #

Retrieves a Proc for the OpenGL function glGetActiveAtomicCounterBufferiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_atomic_counter_buffer_iv? #

Checks if the OpenGL function glGetActiveAtomicCounterBufferiv is loaded.


[View source]
def get_active_attrib : Proc #

Retrieves a Proc for the OpenGL function glGetActiveAttrib. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_attrib? #

Checks if the OpenGL function glGetActiveAttrib is loaded.


[View source]
def get_active_subroutine_name : Proc #

Retrieves a Proc for the OpenGL function glGetActiveSubroutineName. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_subroutine_name? #

Checks if the OpenGL function glGetActiveSubroutineName is loaded.


[View source]
def get_active_subroutine_uniform_iv : Proc #

Retrieves a Proc for the OpenGL function glGetActiveSubroutineUniformiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_subroutine_uniform_iv? #

Checks if the OpenGL function glGetActiveSubroutineUniformiv is loaded.


[View source]
def get_active_subroutine_uniform_name : Proc #

Retrieves a Proc for the OpenGL function glGetActiveSubroutineUniformName. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_subroutine_uniform_name? #

Checks if the OpenGL function glGetActiveSubroutineUniformName is loaded.


[View source]
def get_active_uniform : Proc #

Retrieves a Proc for the OpenGL function glGetActiveUniform. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_uniform? #

Checks if the OpenGL function glGetActiveUniform is loaded.


[View source]
def get_active_uniform_block_iv : Proc #

Retrieves a Proc for the OpenGL function glGetActiveUniformBlockiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_uniform_block_iv? #

Checks if the OpenGL function glGetActiveUniformBlockiv is loaded.


[View source]
def get_active_uniform_block_name : Proc #

Retrieves a Proc for the OpenGL function glGetActiveUniformBlockName. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_uniform_block_name? #

Checks if the OpenGL function glGetActiveUniformBlockName is loaded.


[View source]
def get_active_uniform_name : Proc #

Retrieves a Proc for the OpenGL function glGetActiveUniformName. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_uniform_name? #

Checks if the OpenGL function glGetActiveUniformName is loaded.


[View source]
def get_active_uniforms_iv : Proc #

Retrieves a Proc for the OpenGL function glGetActiveUniformsiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_active_uniforms_iv? #

Checks if the OpenGL function glGetActiveUniformsiv is loaded.


[View source]
def get_attached_shaders : Proc #

Retrieves a Proc for the OpenGL function glGetAttachedShaders. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_attached_shaders? #

Checks if the OpenGL function glGetAttachedShaders is loaded.


[View source]
def get_attrib_location : Proc #

Retrieves a Proc for the OpenGL function glGetAttribLocation. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_attrib_location? #

Checks if the OpenGL function glGetAttribLocation is loaded.


[View source]
def get_boolean_i_v : Proc #

Retrieves a Proc for the OpenGL function glGetBooleani_v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_boolean_i_v? #

Checks if the OpenGL function glGetBooleani_v is loaded.


[View source]
def get_boolean_v : Proc #

Retrieves a Proc for the OpenGL function glGetBooleanv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_boolean_v? #

Checks if the OpenGL function glGetBooleanv is loaded.


[View source]
def get_buffer_parameter_i64v : Proc #

Retrieves a Proc for the OpenGL function glGetBufferParameteri64v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_buffer_parameter_i64v? #

Checks if the OpenGL function glGetBufferParameteri64v is loaded.


[View source]
def get_buffer_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetBufferParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_buffer_parameter_iv? #

Checks if the OpenGL function glGetBufferParameteriv is loaded.


[View source]
def get_buffer_pointer_v : Proc #

Retrieves a Proc for the OpenGL function glGetBufferPointerv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_buffer_pointer_v? #

Checks if the OpenGL function glGetBufferPointerv is loaded.


[View source]
def get_buffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glGetBufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_buffer_sub_data? #

Checks if the OpenGL function glGetBufferSubData is loaded.


[View source]
def get_compressed_tex_image : Proc #

Retrieves a Proc for the OpenGL function glGetCompressedTexImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_compressed_tex_image? #

Checks if the OpenGL function glGetCompressedTexImage is loaded.


[View source]
def get_compressed_texture_image : Proc #

Retrieves a Proc for the OpenGL function glGetCompressedTextureImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_compressed_texture_image? #

Checks if the OpenGL function glGetCompressedTextureImage is loaded.


[View source]
def get_compressed_texture_sub_image : Proc #

Retrieves a Proc for the OpenGL function glGetCompressedTextureSubImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_compressed_texture_sub_image? #

Checks if the OpenGL function glGetCompressedTextureSubImage is loaded.


[View source]
def get_debug_message_log : Proc #

Retrieves a Proc for the OpenGL function glGetDebugMessageLog. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_debug_message_log? #

Checks if the OpenGL function glGetDebugMessageLog is loaded.


[View source]
def get_double_i_v : Proc #

Retrieves a Proc for the OpenGL function glGetDoublei_v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_double_i_v? #

Checks if the OpenGL function glGetDoublei_v is loaded.


[View source]
def get_double_v : Proc #

Retrieves a Proc for the OpenGL function glGetDoublev. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_double_v? #

Checks if the OpenGL function glGetDoublev is loaded.


[View source]
def get_error : Proc #

Retrieves a Proc for the OpenGL function glGetError. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_error? #

Checks if the OpenGL function glGetError is loaded.


[View source]
def get_float_i_v : Proc #

Retrieves a Proc for the OpenGL function glGetFloati_v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_float_i_v? #

Checks if the OpenGL function glGetFloati_v is loaded.


[View source]
def get_float_v : Proc #

Retrieves a Proc for the OpenGL function glGetFloatv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_float_v? #

Checks if the OpenGL function glGetFloatv is loaded.


[View source]
def get_frag_data_index : Proc #

Retrieves a Proc for the OpenGL function glGetFragDataIndex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_frag_data_index? #

Checks if the OpenGL function glGetFragDataIndex is loaded.


[View source]
def get_frag_data_location : Proc #

Retrieves a Proc for the OpenGL function glGetFragDataLocation. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_frag_data_location? #

Checks if the OpenGL function glGetFragDataLocation is loaded.


[View source]
def get_framebuffer_attachment_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetFramebufferAttachmentParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_framebuffer_attachment_parameter_iv? #

Checks if the OpenGL function glGetFramebufferAttachmentParameteriv is loaded.


[View source]
def get_framebuffer_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetFramebufferParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_framebuffer_parameter_iv? #

Checks if the OpenGL function glGetFramebufferParameteriv is loaded.


[View source]
def get_graphics_reset_status : Proc #

Retrieves a Proc for the OpenGL function glGetGraphicsResetStatus. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_graphics_reset_status? #

Checks if the OpenGL function glGetGraphicsResetStatus is loaded.


[View source]
def get_integer_64i_v : Proc #

Retrieves a Proc for the OpenGL function glGetInteger64i_v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_integer_64i_v? #

Checks if the OpenGL function glGetInteger64i_v is loaded.


[View source]
def get_integer_64v : Proc #

Retrieves a Proc for the OpenGL function glGetInteger64v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_integer_64v? #

Checks if the OpenGL function glGetInteger64v is loaded.


[View source]
def get_integer_i_v : Proc #

Retrieves a Proc for the OpenGL function glGetIntegeri_v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_integer_i_v? #

Checks if the OpenGL function glGetIntegeri_v is loaded.


[View source]
def get_integer_v : Proc #

Retrieves a Proc for the OpenGL function glGetIntegerv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_integer_v? #

Checks if the OpenGL function glGetIntegerv is loaded.


[View source]
def get_internalformat_i64v : Proc #

Retrieves a Proc for the OpenGL function glGetInternalformati64v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_internalformat_i64v? #

Checks if the OpenGL function glGetInternalformati64v is loaded.


[View source]
def get_internalformat_iv : Proc #

Retrieves a Proc for the OpenGL function glGetInternalformativ. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_internalformat_iv? #

Checks if the OpenGL function glGetInternalformativ is loaded.


[View source]
def get_multisample_fv : Proc #

Retrieves a Proc for the OpenGL function glGetMultisamplefv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_multisample_fv? #

Checks if the OpenGL function glGetMultisamplefv is loaded.


[View source]
def get_named_buffer_parameter_i64v : Proc #

Retrieves a Proc for the OpenGL function glGetNamedBufferParameteri64v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_named_buffer_parameter_i64v? #

Checks if the OpenGL function glGetNamedBufferParameteri64v is loaded.


[View source]
def get_named_buffer_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetNamedBufferParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_named_buffer_parameter_iv? #

Checks if the OpenGL function glGetNamedBufferParameteriv is loaded.


[View source]
def get_named_buffer_pointer_v : Proc #

Retrieves a Proc for the OpenGL function glGetNamedBufferPointerv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_named_buffer_pointer_v? #

Checks if the OpenGL function glGetNamedBufferPointerv is loaded.


[View source]
def get_named_buffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glGetNamedBufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_named_buffer_sub_data? #

Checks if the OpenGL function glGetNamedBufferSubData is loaded.


[View source]
def get_named_framebuffer_attachment_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetNamedFramebufferAttachmentParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_named_framebuffer_attachment_parameter_iv? #

Checks if the OpenGL function glGetNamedFramebufferAttachmentParameteriv is loaded.


[View source]
def get_named_framebuffer_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetNamedFramebufferParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_named_framebuffer_parameter_iv? #

Checks if the OpenGL function glGetNamedFramebufferParameteriv is loaded.


[View source]
def get_named_renderbuffer_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetNamedRenderbufferParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_named_renderbuffer_parameter_iv? #

Checks if the OpenGL function glGetNamedRenderbufferParameteriv is loaded.


[View source]
def get_object_label : Proc #

Retrieves a Proc for the OpenGL function glGetObjectLabel. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_object_label? #

Checks if the OpenGL function glGetObjectLabel is loaded.


[View source]
def get_object_ptr_label : Proc #

Retrieves a Proc for the OpenGL function glGetObjectPtrLabel. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_object_ptr_label? #

Checks if the OpenGL function glGetObjectPtrLabel is loaded.


[View source]
def get_pointer_v : Proc #

Retrieves a Proc for the OpenGL function glGetPointerv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_pointer_v? #

Checks if the OpenGL function glGetPointerv is loaded.


[View source]
def get_program_binary : Proc #

Retrieves a Proc for the OpenGL function glGetProgramBinary. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_binary? #

Checks if the OpenGL function glGetProgramBinary is loaded.


[View source]
def get_program_info_log : Proc #

Retrieves a Proc for the OpenGL function glGetProgramInfoLog. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_info_log? #

Checks if the OpenGL function glGetProgramInfoLog is loaded.


[View source]
def get_program_interface_iv : Proc #

Retrieves a Proc for the OpenGL function glGetProgramInterfaceiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_interface_iv? #

Checks if the OpenGL function glGetProgramInterfaceiv is loaded.


[View source]
def get_program_iv : Proc #

Retrieves a Proc for the OpenGL function glGetProgramiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_iv? #

Checks if the OpenGL function glGetProgramiv is loaded.


[View source]
def get_program_pipeline_info_log : Proc #

Retrieves a Proc for the OpenGL function glGetProgramPipelineInfoLog. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_pipeline_info_log? #

Checks if the OpenGL function glGetProgramPipelineInfoLog is loaded.


[View source]
def get_program_pipeline_iv : Proc #

Retrieves a Proc for the OpenGL function glGetProgramPipelineiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_pipeline_iv? #

Checks if the OpenGL function glGetProgramPipelineiv is loaded.


[View source]
def get_program_resource_index : Proc #

Retrieves a Proc for the OpenGL function glGetProgramResourceIndex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_resource_index? #

Checks if the OpenGL function glGetProgramResourceIndex is loaded.


[View source]
def get_program_resource_iv : Proc #

Retrieves a Proc for the OpenGL function glGetProgramResourceiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_resource_iv? #

Checks if the OpenGL function glGetProgramResourceiv is loaded.


[View source]
def get_program_resource_location : Proc #

Retrieves a Proc for the OpenGL function glGetProgramResourceLocation. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_resource_location? #

Checks if the OpenGL function glGetProgramResourceLocation is loaded.


[View source]
def get_program_resource_location_index : Proc #

Retrieves a Proc for the OpenGL function glGetProgramResourceLocationIndex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_resource_location_index? #

Checks if the OpenGL function glGetProgramResourceLocationIndex is loaded.


[View source]
def get_program_resource_name : Proc #

Retrieves a Proc for the OpenGL function glGetProgramResourceName. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_resource_name? #

Checks if the OpenGL function glGetProgramResourceName is loaded.


[View source]
def get_program_stage_iv : Proc #

Retrieves a Proc for the OpenGL function glGetProgramStageiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_program_stage_iv? #

Checks if the OpenGL function glGetProgramStageiv is loaded.


[View source]
def get_query_buffer_object_i64v : Proc #

Retrieves a Proc for the OpenGL function glGetQueryBufferObjecti64v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_buffer_object_i64v? #

Checks if the OpenGL function glGetQueryBufferObjecti64v is loaded.


[View source]
def get_query_buffer_object_iv : Proc #

Retrieves a Proc for the OpenGL function glGetQueryBufferObjectiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_buffer_object_iv? #

Checks if the OpenGL function glGetQueryBufferObjectiv is loaded.


[View source]
def get_query_buffer_object_ui64v : Proc #

Retrieves a Proc for the OpenGL function glGetQueryBufferObjectui64v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_buffer_object_ui64v? #

Checks if the OpenGL function glGetQueryBufferObjectui64v is loaded.


[View source]
def get_query_buffer_object_uiv : Proc #

Retrieves a Proc for the OpenGL function glGetQueryBufferObjectuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_buffer_object_uiv? #

Checks if the OpenGL function glGetQueryBufferObjectuiv is loaded.


[View source]
def get_query_indexed_iv : Proc #

Retrieves a Proc for the OpenGL function glGetQueryIndexediv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_indexed_iv? #

Checks if the OpenGL function glGetQueryIndexediv is loaded.


[View source]
def get_query_iv : Proc #

Retrieves a Proc for the OpenGL function glGetQueryiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_iv? #

Checks if the OpenGL function glGetQueryiv is loaded.


[View source]
def get_query_object_i64v : Proc #

Retrieves a Proc for the OpenGL function glGetQueryObjecti64v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_object_i64v? #

Checks if the OpenGL function glGetQueryObjecti64v is loaded.


[View source]
def get_query_object_iv : Proc #

Retrieves a Proc for the OpenGL function glGetQueryObjectiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_object_iv? #

Checks if the OpenGL function glGetQueryObjectiv is loaded.


[View source]
def get_query_object_ui64v : Proc #

Retrieves a Proc for the OpenGL function glGetQueryObjectui64v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_object_ui64v? #

Checks if the OpenGL function glGetQueryObjectui64v is loaded.


[View source]
def get_query_object_uiv : Proc #

Retrieves a Proc for the OpenGL function glGetQueryObjectuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_query_object_uiv? #

Checks if the OpenGL function glGetQueryObjectuiv is loaded.


[View source]
def get_renderbuffer_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetRenderbufferParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_renderbuffer_parameter_iv? #

Checks if the OpenGL function glGetRenderbufferParameteriv is loaded.


[View source]
def get_sampler_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glGetSamplerParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_sampler_parameter_fv? #

Checks if the OpenGL function glGetSamplerParameterfv is loaded.


[View source]
def get_sampler_parameter_i_iv : Proc #

Retrieves a Proc for the OpenGL function glGetSamplerParameterIiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_sampler_parameter_i_iv? #

Checks if the OpenGL function glGetSamplerParameterIiv is loaded.


[View source]
def get_sampler_parameter_i_uiv : Proc #

Retrieves a Proc for the OpenGL function glGetSamplerParameterIuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_sampler_parameter_i_uiv? #

Checks if the OpenGL function glGetSamplerParameterIuiv is loaded.


[View source]
def get_sampler_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetSamplerParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_sampler_parameter_iv? #

Checks if the OpenGL function glGetSamplerParameteriv is loaded.


[View source]
def get_shader_info_log : Proc #

Retrieves a Proc for the OpenGL function glGetShaderInfoLog. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_shader_info_log? #

Checks if the OpenGL function glGetShaderInfoLog is loaded.


[View source]
def get_shader_iv : Proc #

Retrieves a Proc for the OpenGL function glGetShaderiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_shader_iv? #

Checks if the OpenGL function glGetShaderiv is loaded.


[View source]
def get_shader_precision_format : Proc #

Retrieves a Proc for the OpenGL function glGetShaderPrecisionFormat. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_shader_precision_format? #

Checks if the OpenGL function glGetShaderPrecisionFormat is loaded.


[View source]
def get_shader_source : Proc #

Retrieves a Proc for the OpenGL function glGetShaderSource. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_shader_source? #

Checks if the OpenGL function glGetShaderSource is loaded.


[View source]
def get_string : Proc #

Retrieves a Proc for the OpenGL function glGetString. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_string? #

Checks if the OpenGL function glGetString is loaded.


[View source]
def get_string_i : Proc #

Retrieves a Proc for the OpenGL function glGetStringi. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_string_i? #

Checks if the OpenGL function glGetStringi is loaded.


[View source]
def get_subroutine_index : Proc #

Retrieves a Proc for the OpenGL function glGetSubroutineIndex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_subroutine_index? #

Checks if the OpenGL function glGetSubroutineIndex is loaded.


[View source]
def get_subroutine_uniform_location : Proc #

Retrieves a Proc for the OpenGL function glGetSubroutineUniformLocation. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_subroutine_uniform_location? #

Checks if the OpenGL function glGetSubroutineUniformLocation is loaded.


[View source]
def get_sync_iv : Proc #

Retrieves a Proc for the OpenGL function glGetSynciv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_sync_iv? #

Checks if the OpenGL function glGetSynciv is loaded.


[View source]
def get_tex_image : Proc #

Retrieves a Proc for the OpenGL function glGetTexImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_tex_image? #

Checks if the OpenGL function glGetTexImage is loaded.


[View source]
def get_tex_level_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glGetTexLevelParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_tex_level_parameter_fv? #

Checks if the OpenGL function glGetTexLevelParameterfv is loaded.


[View source]
def get_tex_level_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetTexLevelParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_tex_level_parameter_iv? #

Checks if the OpenGL function glGetTexLevelParameteriv is loaded.


[View source]
def get_tex_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glGetTexParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_tex_parameter_fv? #

Checks if the OpenGL function glGetTexParameterfv is loaded.


[View source]
def get_tex_parameter_i_iv : Proc #

Retrieves a Proc for the OpenGL function glGetTexParameterIiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_tex_parameter_i_iv? #

Checks if the OpenGL function glGetTexParameterIiv is loaded.


[View source]
def get_tex_parameter_i_uiv : Proc #

Retrieves a Proc for the OpenGL function glGetTexParameterIuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_tex_parameter_i_uiv? #

Checks if the OpenGL function glGetTexParameterIuiv is loaded.


[View source]
def get_tex_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetTexParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_tex_parameter_iv? #

Checks if the OpenGL function glGetTexParameteriv is loaded.


[View source]
def get_texture_image : Proc #

Retrieves a Proc for the OpenGL function glGetTextureImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_texture_image? #

Checks if the OpenGL function glGetTextureImage is loaded.


[View source]
def get_texture_level_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glGetTextureLevelParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_texture_level_parameter_fv? #

Checks if the OpenGL function glGetTextureLevelParameterfv is loaded.


[View source]
def get_texture_level_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetTextureLevelParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_texture_level_parameter_iv? #

Checks if the OpenGL function glGetTextureLevelParameteriv is loaded.


[View source]
def get_texture_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glGetTextureParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_texture_parameter_fv? #

Checks if the OpenGL function glGetTextureParameterfv is loaded.


[View source]
def get_texture_parameter_i_iv : Proc #

Retrieves a Proc for the OpenGL function glGetTextureParameterIiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_texture_parameter_i_iv? #

Checks if the OpenGL function glGetTextureParameterIiv is loaded.


[View source]
def get_texture_parameter_i_uiv : Proc #

Retrieves a Proc for the OpenGL function glGetTextureParameterIuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_texture_parameter_i_uiv? #

Checks if the OpenGL function glGetTextureParameterIuiv is loaded.


[View source]
def get_texture_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glGetTextureParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_texture_parameter_iv? #

Checks if the OpenGL function glGetTextureParameteriv is loaded.


[View source]
def get_texture_sub_image : Proc #

Retrieves a Proc for the OpenGL function glGetTextureSubImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_texture_sub_image? #

Checks if the OpenGL function glGetTextureSubImage is loaded.


[View source]
def get_transform_feedback_i64_v : Proc #

Retrieves a Proc for the OpenGL function glGetTransformFeedbacki64_v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_transform_feedback_i64_v? #

Checks if the OpenGL function glGetTransformFeedbacki64_v is loaded.


[View source]
def get_transform_feedback_i_v : Proc #

Retrieves a Proc for the OpenGL function glGetTransformFeedbacki_v. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_transform_feedback_i_v? #

Checks if the OpenGL function glGetTransformFeedbacki_v is loaded.


[View source]
def get_transform_feedback_iv : Proc #

Retrieves a Proc for the OpenGL function glGetTransformFeedbackiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_transform_feedback_iv? #

Checks if the OpenGL function glGetTransformFeedbackiv is loaded.


[View source]
def get_transform_feedback_varying : Proc #

Retrieves a Proc for the OpenGL function glGetTransformFeedbackVarying. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_transform_feedback_varying? #

Checks if the OpenGL function glGetTransformFeedbackVarying is loaded.


[View source]
def get_uniform_block_index : Proc #

Retrieves a Proc for the OpenGL function glGetUniformBlockIndex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_uniform_block_index? #

Checks if the OpenGL function glGetUniformBlockIndex is loaded.


[View source]
def get_uniform_dv : Proc #

Retrieves a Proc for the OpenGL function glGetUniformdv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_uniform_dv? #

Checks if the OpenGL function glGetUniformdv is loaded.


[View source]
def get_uniform_fv : Proc #

Retrieves a Proc for the OpenGL function glGetUniformfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_uniform_fv? #

Checks if the OpenGL function glGetUniformfv is loaded.


[View source]
def get_uniform_indices : Proc #

Retrieves a Proc for the OpenGL function glGetUniformIndices. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_uniform_indices? #

Checks if the OpenGL function glGetUniformIndices is loaded.


[View source]
def get_uniform_iv : Proc #

Retrieves a Proc for the OpenGL function glGetUniformiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_uniform_iv? #

Checks if the OpenGL function glGetUniformiv is loaded.


[View source]
def get_uniform_location : Proc #

Retrieves a Proc for the OpenGL function glGetUniformLocation. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_uniform_location? #

Checks if the OpenGL function glGetUniformLocation is loaded.


[View source]
def get_uniform_subroutine_uiv : Proc #

Retrieves a Proc for the OpenGL function glGetUniformSubroutineuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_uniform_subroutine_uiv? #

Checks if the OpenGL function glGetUniformSubroutineuiv is loaded.


[View source]
def get_uniform_uiv : Proc #

Retrieves a Proc for the OpenGL function glGetUniformuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_uniform_uiv? #

Checks if the OpenGL function glGetUniformuiv is loaded.


[View source]
def get_vertex_array_indexed_64iv : Proc #

Retrieves a Proc for the OpenGL function glGetVertexArrayIndexed64iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_array_indexed_64iv? #

Checks if the OpenGL function glGetVertexArrayIndexed64iv is loaded.


[View source]
def get_vertex_array_indexed_iv : Proc #

Retrieves a Proc for the OpenGL function glGetVertexArrayIndexediv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_array_indexed_iv? #

Checks if the OpenGL function glGetVertexArrayIndexediv is loaded.


[View source]
def get_vertex_array_iv : Proc #

Retrieves a Proc for the OpenGL function glGetVertexArrayiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_array_iv? #

Checks if the OpenGL function glGetVertexArrayiv is loaded.


[View source]
def get_vertex_attrib_dv : Proc #

Retrieves a Proc for the OpenGL function glGetVertexAttribdv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_attrib_dv? #

Checks if the OpenGL function glGetVertexAttribdv is loaded.


[View source]
def get_vertex_attrib_fv : Proc #

Retrieves a Proc for the OpenGL function glGetVertexAttribfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_attrib_fv? #

Checks if the OpenGL function glGetVertexAttribfv is loaded.


[View source]
def get_vertex_attrib_i_iv : Proc #

Retrieves a Proc for the OpenGL function glGetVertexAttribIiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_attrib_i_iv? #

Checks if the OpenGL function glGetVertexAttribIiv is loaded.


[View source]
def get_vertex_attrib_i_uiv : Proc #

Retrieves a Proc for the OpenGL function glGetVertexAttribIuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_attrib_i_uiv? #

Checks if the OpenGL function glGetVertexAttribIuiv is loaded.


[View source]
def get_vertex_attrib_iv : Proc #

Retrieves a Proc for the OpenGL function glGetVertexAttribiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_attrib_iv? #

Checks if the OpenGL function glGetVertexAttribiv is loaded.


[View source]
def get_vertex_attrib_l_dv : Proc #

Retrieves a Proc for the OpenGL function glGetVertexAttribLdv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_attrib_l_dv? #

Checks if the OpenGL function glGetVertexAttribLdv is loaded.


[View source]
def get_vertex_attrib_pointer_v : Proc #

Retrieves a Proc for the OpenGL function glGetVertexAttribPointerv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def get_vertex_attrib_pointer_v? #

Checks if the OpenGL function glGetVertexAttribPointerv is loaded.


[View source]
def getn_compressed_tex_image : Proc #

Retrieves a Proc for the OpenGL function glGetnCompressedTexImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def getn_compressed_tex_image? #

Checks if the OpenGL function glGetnCompressedTexImage is loaded.


[View source]
def getn_tex_image : Proc #

Retrieves a Proc for the OpenGL function glGetnTexImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def getn_tex_image? #

Checks if the OpenGL function glGetnTexImage is loaded.


[View source]
def getn_uniform_dv : Proc #

Retrieves a Proc for the OpenGL function glGetnUniformdv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def getn_uniform_dv? #

Checks if the OpenGL function glGetnUniformdv is loaded.


[View source]
def getn_uniform_fv : Proc #

Retrieves a Proc for the OpenGL function glGetnUniformfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def getn_uniform_fv? #

Checks if the OpenGL function glGetnUniformfv is loaded.


[View source]
def getn_uniform_iv : Proc #

Retrieves a Proc for the OpenGL function glGetnUniformiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def getn_uniform_iv? #

Checks if the OpenGL function glGetnUniformiv is loaded.


[View source]
def getn_uniform_uiv : Proc #

Retrieves a Proc for the OpenGL function glGetnUniformuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def getn_uniform_uiv? #

Checks if the OpenGL function glGetnUniformuiv is loaded.


[View source]
def hint : Proc #

Retrieves a Proc for the OpenGL function glHint. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def hint? #

Checks if the OpenGL function glHint is loaded.


[View source]
def invalidate_buffer_data : Proc #

Retrieves a Proc for the OpenGL function glInvalidateBufferData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def invalidate_buffer_data? #

Checks if the OpenGL function glInvalidateBufferData is loaded.


[View source]
def invalidate_buffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glInvalidateBufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def invalidate_buffer_sub_data? #

Checks if the OpenGL function glInvalidateBufferSubData is loaded.


[View source]
def invalidate_framebuffer : Proc #

Retrieves a Proc for the OpenGL function glInvalidateFramebuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def invalidate_framebuffer? #

Checks if the OpenGL function glInvalidateFramebuffer is loaded.


[View source]
def invalidate_named_framebuffer_data : Proc #

Retrieves a Proc for the OpenGL function glInvalidateNamedFramebufferData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def invalidate_named_framebuffer_data? #

Checks if the OpenGL function glInvalidateNamedFramebufferData is loaded.


[View source]
def invalidate_named_framebuffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glInvalidateNamedFramebufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def invalidate_named_framebuffer_sub_data? #

Checks if the OpenGL function glInvalidateNamedFramebufferSubData is loaded.


[View source]
def invalidate_sub_framebuffer : Proc #

Retrieves a Proc for the OpenGL function glInvalidateSubFramebuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def invalidate_sub_framebuffer? #

Checks if the OpenGL function glInvalidateSubFramebuffer is loaded.


[View source]
def invalidate_tex_image : Proc #

Retrieves a Proc for the OpenGL function glInvalidateTexImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def invalidate_tex_image? #

Checks if the OpenGL function glInvalidateTexImage is loaded.


[View source]
def invalidate_tex_sub_image : Proc #

Retrieves a Proc for the OpenGL function glInvalidateTexSubImage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def invalidate_tex_sub_image? #

Checks if the OpenGL function glInvalidateTexSubImage is loaded.


[View source]
def is_buffer : Proc #

Retrieves a Proc for the OpenGL function glIsBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_buffer? #

Checks if the OpenGL function glIsBuffer is loaded.


[View source]
def is_enabled : Proc #

Retrieves a Proc for the OpenGL function glIsEnabled. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_enabled? #

Checks if the OpenGL function glIsEnabled is loaded.


[View source]
def is_enabled_i : Proc #

Retrieves a Proc for the OpenGL function glIsEnabledi. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_enabled_i? #

Checks if the OpenGL function glIsEnabledi is loaded.


[View source]
def is_framebuffer : Proc #

Retrieves a Proc for the OpenGL function glIsFramebuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_framebuffer? #

Checks if the OpenGL function glIsFramebuffer is loaded.


[View source]
def is_program : Proc #

Retrieves a Proc for the OpenGL function glIsProgram. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_program? #

Checks if the OpenGL function glIsProgram is loaded.


[View source]
def is_program_pipeline : Proc #

Retrieves a Proc for the OpenGL function glIsProgramPipeline. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_program_pipeline? #

Checks if the OpenGL function glIsProgramPipeline is loaded.


[View source]
def is_query : Proc #

Retrieves a Proc for the OpenGL function glIsQuery. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_query? #

Checks if the OpenGL function glIsQuery is loaded.


[View source]
def is_renderbuffer : Proc #

Retrieves a Proc for the OpenGL function glIsRenderbuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_renderbuffer? #

Checks if the OpenGL function glIsRenderbuffer is loaded.


[View source]
def is_sampler : Proc #

Retrieves a Proc for the OpenGL function glIsSampler. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_sampler? #

Checks if the OpenGL function glIsSampler is loaded.


[View source]
def is_shader : Proc #

Retrieves a Proc for the OpenGL function glIsShader. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_shader? #

Checks if the OpenGL function glIsShader is loaded.


[View source]
def is_sync : Proc #

Retrieves a Proc for the OpenGL function glIsSync. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_sync? #

Checks if the OpenGL function glIsSync is loaded.


[View source]
def is_texture : Proc #

Retrieves a Proc for the OpenGL function glIsTexture. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_texture? #

Checks if the OpenGL function glIsTexture is loaded.


[View source]
def is_transform_feedback : Proc #

Retrieves a Proc for the OpenGL function glIsTransformFeedback. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_transform_feedback? #

Checks if the OpenGL function glIsTransformFeedback is loaded.


[View source]
def is_vertex_array : Proc #

Retrieves a Proc for the OpenGL function glIsVertexArray. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def is_vertex_array? #

Checks if the OpenGL function glIsVertexArray is loaded.


[View source]
def line_width : Proc #

Retrieves a Proc for the OpenGL function glLineWidth. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def line_width? #

Checks if the OpenGL function glLineWidth is loaded.


[View source]
def link_program : Proc #

Retrieves a Proc for the OpenGL function glLinkProgram. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def link_program? #

Checks if the OpenGL function glLinkProgram is loaded.


[View source]
def logic_op : Proc #

Retrieves a Proc for the OpenGL function glLogicOp. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def logic_op? #

Checks if the OpenGL function glLogicOp is loaded.


[View source]
def map_buffer : Proc #

Retrieves a Proc for the OpenGL function glMapBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def map_buffer? #

Checks if the OpenGL function glMapBuffer is loaded.


[View source]
def map_buffer_range : Proc #

Retrieves a Proc for the OpenGL function glMapBufferRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def map_buffer_range? #

Checks if the OpenGL function glMapBufferRange is loaded.


[View source]
def map_named_buffer : Proc #

Retrieves a Proc for the OpenGL function glMapNamedBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def map_named_buffer? #

Checks if the OpenGL function glMapNamedBuffer is loaded.


[View source]
def map_named_buffer_range : Proc #

Retrieves a Proc for the OpenGL function glMapNamedBufferRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def map_named_buffer_range? #

Checks if the OpenGL function glMapNamedBufferRange is loaded.


[View source]
def memory_barrier : Proc #

Retrieves a Proc for the OpenGL function glMemoryBarrier. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def memory_barrier? #

Checks if the OpenGL function glMemoryBarrier is loaded.


[View source]
def memory_barrier_by_region : Proc #

Retrieves a Proc for the OpenGL function glMemoryBarrierByRegion. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def memory_barrier_by_region? #

Checks if the OpenGL function glMemoryBarrierByRegion is loaded.


[View source]
def min_sample_shading : Proc #

Retrieves a Proc for the OpenGL function glMinSampleShading. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def min_sample_shading? #

Checks if the OpenGL function glMinSampleShading is loaded.


[View source]
def multi_draw_arrays : Proc #

Retrieves a Proc for the OpenGL function glMultiDrawArrays. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def multi_draw_arrays? #

Checks if the OpenGL function glMultiDrawArrays is loaded.


[View source]
def multi_draw_arrays_indirect : Proc #

Retrieves a Proc for the OpenGL function glMultiDrawArraysIndirect. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def multi_draw_arrays_indirect? #

Checks if the OpenGL function glMultiDrawArraysIndirect is loaded.


[View source]
def multi_draw_arrays_indirect_count : Proc #

Retrieves a Proc for the OpenGL function glMultiDrawArraysIndirectCount. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def multi_draw_arrays_indirect_count? #

Checks if the OpenGL function glMultiDrawArraysIndirectCount is loaded.


[View source]
def multi_draw_elements : Proc #

Retrieves a Proc for the OpenGL function glMultiDrawElements. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def multi_draw_elements? #

Checks if the OpenGL function glMultiDrawElements is loaded.


[View source]
def multi_draw_elements_base_vertex : Proc #

Retrieves a Proc for the OpenGL function glMultiDrawElementsBaseVertex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def multi_draw_elements_base_vertex? #

Checks if the OpenGL function glMultiDrawElementsBaseVertex is loaded.


[View source]
def multi_draw_elements_indirect : Proc #

Retrieves a Proc for the OpenGL function glMultiDrawElementsIndirect. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def multi_draw_elements_indirect? #

Checks if the OpenGL function glMultiDrawElementsIndirect is loaded.


[View source]
def multi_draw_elements_indirect_count : Proc #

Retrieves a Proc for the OpenGL function glMultiDrawElementsIndirectCount. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def multi_draw_elements_indirect_count? #

Checks if the OpenGL function glMultiDrawElementsIndirectCount is loaded.


[View source]
def named_buffer_data : Proc #

Retrieves a Proc for the OpenGL function glNamedBufferData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_buffer_data? #

Checks if the OpenGL function glNamedBufferData is loaded.


[View source]
def named_buffer_storage : Proc #

Retrieves a Proc for the OpenGL function glNamedBufferStorage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_buffer_storage? #

Checks if the OpenGL function glNamedBufferStorage is loaded.


[View source]
def named_buffer_sub_data : Proc #

Retrieves a Proc for the OpenGL function glNamedBufferSubData. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_buffer_sub_data? #

Checks if the OpenGL function glNamedBufferSubData is loaded.


[View source]
def named_framebuffer_draw_buffer : Proc #

Retrieves a Proc for the OpenGL function glNamedFramebufferDrawBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_framebuffer_draw_buffer? #

Checks if the OpenGL function glNamedFramebufferDrawBuffer is loaded.


[View source]
def named_framebuffer_draw_buffers : Proc #

Retrieves a Proc for the OpenGL function glNamedFramebufferDrawBuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_framebuffer_draw_buffers? #

Checks if the OpenGL function glNamedFramebufferDrawBuffers is loaded.


[View source]
def named_framebuffer_parameter_i : Proc #

Retrieves a Proc for the OpenGL function glNamedFramebufferParameteri. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_framebuffer_parameter_i? #

Checks if the OpenGL function glNamedFramebufferParameteri is loaded.


[View source]
def named_framebuffer_read_buffer : Proc #

Retrieves a Proc for the OpenGL function glNamedFramebufferReadBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_framebuffer_read_buffer? #

Checks if the OpenGL function glNamedFramebufferReadBuffer is loaded.


[View source]
def named_framebuffer_renderbuffer : Proc #

Retrieves a Proc for the OpenGL function glNamedFramebufferRenderbuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_framebuffer_renderbuffer? #

Checks if the OpenGL function glNamedFramebufferRenderbuffer is loaded.


[View source]
def named_framebuffer_texture : Proc #

Retrieves a Proc for the OpenGL function glNamedFramebufferTexture. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_framebuffer_texture? #

Checks if the OpenGL function glNamedFramebufferTexture is loaded.


[View source]
def named_framebuffer_texture_layer : Proc #

Retrieves a Proc for the OpenGL function glNamedFramebufferTextureLayer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_framebuffer_texture_layer? #

Checks if the OpenGL function glNamedFramebufferTextureLayer is loaded.


[View source]
def named_renderbuffer_storage : Proc #

Retrieves a Proc for the OpenGL function glNamedRenderbufferStorage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_renderbuffer_storage? #

Checks if the OpenGL function glNamedRenderbufferStorage is loaded.


[View source]
def named_renderbuffer_storage_multisample : Proc #

Retrieves a Proc for the OpenGL function glNamedRenderbufferStorageMultisample. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def named_renderbuffer_storage_multisample? #

Checks if the OpenGL function glNamedRenderbufferStorageMultisample is loaded.


[View source]
def object_label : Proc #

Retrieves a Proc for the OpenGL function glObjectLabel. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def object_label? #

Checks if the OpenGL function glObjectLabel is loaded.


[View source]
def object_ptr_label : Proc #

Retrieves a Proc for the OpenGL function glObjectPtrLabel. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def object_ptr_label? #

Checks if the OpenGL function glObjectPtrLabel is loaded.


[View source]
def patch_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glPatchParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def patch_parameter_fv? #

Checks if the OpenGL function glPatchParameterfv is loaded.


[View source]
def patch_parameter_i : Proc #

Retrieves a Proc for the OpenGL function glPatchParameteri. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def patch_parameter_i? #

Checks if the OpenGL function glPatchParameteri is loaded.


[View source]
def pause_transform_feedback : Proc #

Retrieves a Proc for the OpenGL function glPauseTransformFeedback. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def pause_transform_feedback? #

Checks if the OpenGL function glPauseTransformFeedback is loaded.


[View source]
def pixel_store_f : Proc #

Retrieves a Proc for the OpenGL function glPixelStoref. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def pixel_store_f? #

Checks if the OpenGL function glPixelStoref is loaded.


[View source]
def pixel_store_i : Proc #

Retrieves a Proc for the OpenGL function glPixelStorei. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def pixel_store_i? #

Checks if the OpenGL function glPixelStorei is loaded.


[View source]
def point_parameter_f : Proc #

Retrieves a Proc for the OpenGL function glPointParameterf. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def point_parameter_f? #

Checks if the OpenGL function glPointParameterf is loaded.


[View source]
def point_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glPointParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def point_parameter_fv? #

Checks if the OpenGL function glPointParameterfv is loaded.


[View source]
def point_parameter_i : Proc #

Retrieves a Proc for the OpenGL function glPointParameteri. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def point_parameter_i? #

Checks if the OpenGL function glPointParameteri is loaded.


[View source]
def point_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glPointParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def point_parameter_iv? #

Checks if the OpenGL function glPointParameteriv is loaded.


[View source]
def point_size : Proc #

Retrieves a Proc for the OpenGL function glPointSize. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def point_size? #

Checks if the OpenGL function glPointSize is loaded.


[View source]
def polygon_mode : Proc #

Retrieves a Proc for the OpenGL function glPolygonMode. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def polygon_mode? #

Checks if the OpenGL function glPolygonMode is loaded.


[View source]
def polygon_offset : Proc #

Retrieves a Proc for the OpenGL function glPolygonOffset. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def polygon_offset? #

Checks if the OpenGL function glPolygonOffset is loaded.


[View source]
def polygon_offset_clamp : Proc #

Retrieves a Proc for the OpenGL function glPolygonOffsetClamp. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def polygon_offset_clamp? #

Checks if the OpenGL function glPolygonOffsetClamp is loaded.


[View source]
def pop_debug_group : Proc #

Retrieves a Proc for the OpenGL function glPopDebugGroup. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def pop_debug_group? #

Checks if the OpenGL function glPopDebugGroup is loaded.


[View source]
def primitive_restart_index : Proc #

Retrieves a Proc for the OpenGL function glPrimitiveRestartIndex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def primitive_restart_index? #

Checks if the OpenGL function glPrimitiveRestartIndex is loaded.


[View source]
def program_binary : Proc #

Retrieves a Proc for the OpenGL function glProgramBinary. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_binary? #

Checks if the OpenGL function glProgramBinary is loaded.


[View source]
def program_parameter_i : Proc #

Retrieves a Proc for the OpenGL function glProgramParameteri. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_parameter_i? #

Checks if the OpenGL function glProgramParameteri is loaded.


[View source]
def program_uniform_1d : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform1d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_1d? #

Checks if the OpenGL function glProgramUniform1d is loaded.


[View source]
def program_uniform_1dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform1dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_1dv? #

Checks if the OpenGL function glProgramUniform1dv is loaded.


[View source]
def program_uniform_1f : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform1f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_1f? #

Checks if the OpenGL function glProgramUniform1f is loaded.


[View source]
def program_uniform_1fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform1fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_1fv? #

Checks if the OpenGL function glProgramUniform1fv is loaded.


[View source]
def program_uniform_1i : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform1i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_1i? #

Checks if the OpenGL function glProgramUniform1i is loaded.


[View source]
def program_uniform_1iv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform1iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_1iv? #

Checks if the OpenGL function glProgramUniform1iv is loaded.


[View source]
def program_uniform_1ui : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform1ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_1ui? #

Checks if the OpenGL function glProgramUniform1ui is loaded.


[View source]
def program_uniform_1uiv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform1uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_1uiv? #

Checks if the OpenGL function glProgramUniform1uiv is loaded.


[View source]
def program_uniform_2d : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform2d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_2d? #

Checks if the OpenGL function glProgramUniform2d is loaded.


[View source]
def program_uniform_2dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_2dv? #

Checks if the OpenGL function glProgramUniform2dv is loaded.


[View source]
def program_uniform_2f : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform2f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_2f? #

Checks if the OpenGL function glProgramUniform2f is loaded.


[View source]
def program_uniform_2fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform2fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_2fv? #

Checks if the OpenGL function glProgramUniform2fv is loaded.


[View source]
def program_uniform_2i : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform2i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_2i? #

Checks if the OpenGL function glProgramUniform2i is loaded.


[View source]
def program_uniform_2iv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform2iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_2iv? #

Checks if the OpenGL function glProgramUniform2iv is loaded.


[View source]
def program_uniform_2ui : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform2ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_2ui? #

Checks if the OpenGL function glProgramUniform2ui is loaded.


[View source]
def program_uniform_2uiv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform2uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_2uiv? #

Checks if the OpenGL function glProgramUniform2uiv is loaded.


[View source]
def program_uniform_3d : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform3d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_3d? #

Checks if the OpenGL function glProgramUniform3d is loaded.


[View source]
def program_uniform_3dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_3dv? #

Checks if the OpenGL function glProgramUniform3dv is loaded.


[View source]
def program_uniform_3f : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform3f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_3f? #

Checks if the OpenGL function glProgramUniform3f is loaded.


[View source]
def program_uniform_3fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform3fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_3fv? #

Checks if the OpenGL function glProgramUniform3fv is loaded.


[View source]
def program_uniform_3i : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform3i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_3i? #

Checks if the OpenGL function glProgramUniform3i is loaded.


[View source]
def program_uniform_3iv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform3iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_3iv? #

Checks if the OpenGL function glProgramUniform3iv is loaded.


[View source]
def program_uniform_3ui : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform3ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_3ui? #

Checks if the OpenGL function glProgramUniform3ui is loaded.


[View source]
def program_uniform_3uiv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform3uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_3uiv? #

Checks if the OpenGL function glProgramUniform3uiv is loaded.


[View source]
def program_uniform_4d : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform4d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_4d? #

Checks if the OpenGL function glProgramUniform4d is loaded.


[View source]
def program_uniform_4dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_4dv? #

Checks if the OpenGL function glProgramUniform4dv is loaded.


[View source]
def program_uniform_4f : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform4f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_4f? #

Checks if the OpenGL function glProgramUniform4f is loaded.


[View source]
def program_uniform_4fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform4fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_4fv? #

Checks if the OpenGL function glProgramUniform4fv is loaded.


[View source]
def program_uniform_4i : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform4i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_4i? #

Checks if the OpenGL function glProgramUniform4i is loaded.


[View source]
def program_uniform_4iv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform4iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_4iv? #

Checks if the OpenGL function glProgramUniform4iv is loaded.


[View source]
def program_uniform_4ui : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform4ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_4ui? #

Checks if the OpenGL function glProgramUniform4ui is loaded.


[View source]
def program_uniform_4uiv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniform4uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_4uiv? #

Checks if the OpenGL function glProgramUniform4uiv is loaded.


[View source]
def program_uniform_matrix2_dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix2_dv? #

Checks if the OpenGL function glProgramUniformMatrix2dv is loaded.


[View source]
def program_uniform_matrix2_fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix2fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix2_fv? #

Checks if the OpenGL function glProgramUniformMatrix2fv is loaded.


[View source]
def program_uniform_matrix2x3_dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix2x3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix2x3_dv? #

Checks if the OpenGL function glProgramUniformMatrix2x3dv is loaded.


[View source]
def program_uniform_matrix2x3_fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix2x3fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix2x3_fv? #

Checks if the OpenGL function glProgramUniformMatrix2x3fv is loaded.


[View source]
def program_uniform_matrix2x4_dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix2x4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix2x4_dv? #

Checks if the OpenGL function glProgramUniformMatrix2x4dv is loaded.


[View source]
def program_uniform_matrix2x4_fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix2x4fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix2x4_fv? #

Checks if the OpenGL function glProgramUniformMatrix2x4fv is loaded.


[View source]
def program_uniform_matrix3_dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix3_dv? #

Checks if the OpenGL function glProgramUniformMatrix3dv is loaded.


[View source]
def program_uniform_matrix3_fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix3fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix3_fv? #

Checks if the OpenGL function glProgramUniformMatrix3fv is loaded.


[View source]
def program_uniform_matrix3x2_dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix3x2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix3x2_dv? #

Checks if the OpenGL function glProgramUniformMatrix3x2dv is loaded.


[View source]
def program_uniform_matrix3x2_fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix3x2fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix3x2_fv? #

Checks if the OpenGL function glProgramUniformMatrix3x2fv is loaded.


[View source]
def program_uniform_matrix3x4_dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix3x4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix3x4_dv? #

Checks if the OpenGL function glProgramUniformMatrix3x4dv is loaded.


[View source]
def program_uniform_matrix3x4_fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix3x4fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix3x4_fv? #

Checks if the OpenGL function glProgramUniformMatrix3x4fv is loaded.


[View source]
def program_uniform_matrix4_dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix4_dv? #

Checks if the OpenGL function glProgramUniformMatrix4dv is loaded.


[View source]
def program_uniform_matrix4_fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix4fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix4_fv? #

Checks if the OpenGL function glProgramUniformMatrix4fv is loaded.


[View source]
def program_uniform_matrix4x2_dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix4x2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix4x2_dv? #

Checks if the OpenGL function glProgramUniformMatrix4x2dv is loaded.


[View source]
def program_uniform_matrix4x2_fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix4x2fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix4x2_fv? #

Checks if the OpenGL function glProgramUniformMatrix4x2fv is loaded.


[View source]
def program_uniform_matrix4x3_dv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix4x3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix4x3_dv? #

Checks if the OpenGL function glProgramUniformMatrix4x3dv is loaded.


[View source]
def program_uniform_matrix4x3_fv : Proc #

Retrieves a Proc for the OpenGL function glProgramUniformMatrix4x3fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def program_uniform_matrix4x3_fv? #

Checks if the OpenGL function glProgramUniformMatrix4x3fv is loaded.


[View source]
def provoking_vertex : Proc #

Retrieves a Proc for the OpenGL function glProvokingVertex. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def provoking_vertex? #

Checks if the OpenGL function glProvokingVertex is loaded.


[View source]
def push_debug_group : Proc #

Retrieves a Proc for the OpenGL function glPushDebugGroup. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def push_debug_group? #

Checks if the OpenGL function glPushDebugGroup is loaded.


[View source]
def query_counter : Proc #

Retrieves a Proc for the OpenGL function glQueryCounter. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def query_counter? #

Checks if the OpenGL function glQueryCounter is loaded.


[View source]
def read_buffer : Proc #

Retrieves a Proc for the OpenGL function glReadBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def read_buffer? #

Checks if the OpenGL function glReadBuffer is loaded.


[View source]
def read_pixels : Proc #

Retrieves a Proc for the OpenGL function glReadPixels. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def read_pixels? #

Checks if the OpenGL function glReadPixels is loaded.


[View source]
def readn_pixels : Proc #

Retrieves a Proc for the OpenGL function glReadnPixels. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def readn_pixels? #

Checks if the OpenGL function glReadnPixels is loaded.


[View source]
def release_shader_compiler : Proc #

Retrieves a Proc for the OpenGL function glReleaseShaderCompiler. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def release_shader_compiler? #

Checks if the OpenGL function glReleaseShaderCompiler is loaded.


[View source]
def renderbuffer_storage : Proc #

Retrieves a Proc for the OpenGL function glRenderbufferStorage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def renderbuffer_storage? #

Checks if the OpenGL function glRenderbufferStorage is loaded.


[View source]
def renderbuffer_storage_multisample : Proc #

Retrieves a Proc for the OpenGL function glRenderbufferStorageMultisample. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def renderbuffer_storage_multisample? #

Checks if the OpenGL function glRenderbufferStorageMultisample is loaded.


[View source]
def resume_transform_feedback : Proc #

Retrieves a Proc for the OpenGL function glResumeTransformFeedback. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def resume_transform_feedback? #

Checks if the OpenGL function glResumeTransformFeedback is loaded.


[View source]
def sample_coverage : Proc #

Retrieves a Proc for the OpenGL function glSampleCoverage. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def sample_coverage? #

Checks if the OpenGL function glSampleCoverage is loaded.


[View source]
def sample_mask_i : Proc #

Retrieves a Proc for the OpenGL function glSampleMaski. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def sample_mask_i? #

Checks if the OpenGL function glSampleMaski is loaded.


[View source]
def sampler_parameter_f : Proc #

Retrieves a Proc for the OpenGL function glSamplerParameterf. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def sampler_parameter_f? #

Checks if the OpenGL function glSamplerParameterf is loaded.


[View source]
def sampler_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glSamplerParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def sampler_parameter_fv? #

Checks if the OpenGL function glSamplerParameterfv is loaded.


[View source]
def sampler_parameter_i : Proc #

Retrieves a Proc for the OpenGL function glSamplerParameteri. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def sampler_parameter_i? #

Checks if the OpenGL function glSamplerParameteri is loaded.


[View source]
def sampler_parameter_i_iv : Proc #

Retrieves a Proc for the OpenGL function glSamplerParameterIiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def sampler_parameter_i_iv? #

Checks if the OpenGL function glSamplerParameterIiv is loaded.


[View source]
def sampler_parameter_i_uiv : Proc #

Retrieves a Proc for the OpenGL function glSamplerParameterIuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def sampler_parameter_i_uiv? #

Checks if the OpenGL function glSamplerParameterIuiv is loaded.


[View source]
def sampler_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glSamplerParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def sampler_parameter_iv? #

Checks if the OpenGL function glSamplerParameteriv is loaded.


[View source]
def scissor : Proc #

Retrieves a Proc for the OpenGL function glScissor. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def scissor? #

Checks if the OpenGL function glScissor is loaded.


[View source]
def scissor_array_v : Proc #

Retrieves a Proc for the OpenGL function glScissorArrayv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def scissor_array_v? #

Checks if the OpenGL function glScissorArrayv is loaded.


[View source]
def scissor_indexed : Proc #

Retrieves a Proc for the OpenGL function glScissorIndexed. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def scissor_indexed? #

Checks if the OpenGL function glScissorIndexed is loaded.


[View source]
def scissor_indexedv : Proc #

Retrieves a Proc for the OpenGL function glScissorIndexedv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def scissor_indexedv? #

Checks if the OpenGL function glScissorIndexedv is loaded.


[View source]
def shader_binary : Proc #

Retrieves a Proc for the OpenGL function glShaderBinary. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def shader_binary? #

Checks if the OpenGL function glShaderBinary is loaded.


[View source]
def shader_source : Proc #

Retrieves a Proc for the OpenGL function glShaderSource. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def shader_source? #

Checks if the OpenGL function glShaderSource is loaded.


[View source]
def shader_storage_block_binding : Proc #

Retrieves a Proc for the OpenGL function glShaderStorageBlockBinding. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def shader_storage_block_binding? #

Checks if the OpenGL function glShaderStorageBlockBinding is loaded.


[View source]
def specialize_shader : Proc #

Retrieves a Proc for the OpenGL function glSpecializeShader. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def specialize_shader? #

Checks if the OpenGL function glSpecializeShader is loaded.


[View source]
def stencil_func : Proc #

Retrieves a Proc for the OpenGL function glStencilFunc. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def stencil_func? #

Checks if the OpenGL function glStencilFunc is loaded.


[View source]
def stencil_func_separate : Proc #

Retrieves a Proc for the OpenGL function glStencilFuncSeparate. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def stencil_func_separate? #

Checks if the OpenGL function glStencilFuncSeparate is loaded.


[View source]
def stencil_mask : Proc #

Retrieves a Proc for the OpenGL function glStencilMask. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def stencil_mask? #

Checks if the OpenGL function glStencilMask is loaded.


[View source]
def stencil_mask_separate : Proc #

Retrieves a Proc for the OpenGL function glStencilMaskSeparate. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def stencil_mask_separate? #

Checks if the OpenGL function glStencilMaskSeparate is loaded.


[View source]
def stencil_op : Proc #

Retrieves a Proc for the OpenGL function glStencilOp. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def stencil_op? #

Checks if the OpenGL function glStencilOp is loaded.


[View source]
def stencil_op_separate : Proc #

Retrieves a Proc for the OpenGL function glStencilOpSeparate. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def stencil_op_separate? #

Checks if the OpenGL function glStencilOpSeparate is loaded.


[View source]
def tex_buffer : Proc #

Retrieves a Proc for the OpenGL function glTexBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_buffer? #

Checks if the OpenGL function glTexBuffer is loaded.


[View source]
def tex_buffer_range : Proc #

Retrieves a Proc for the OpenGL function glTexBufferRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_buffer_range? #

Checks if the OpenGL function glTexBufferRange is loaded.


[View source]
def tex_image_1d : Proc #

Retrieves a Proc for the OpenGL function glTexImage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_image_1d? #

Checks if the OpenGL function glTexImage1D is loaded.


[View source]
def tex_image_2d : Proc #

Retrieves a Proc for the OpenGL function glTexImage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_image_2d? #

Checks if the OpenGL function glTexImage2D is loaded.


[View source]
def tex_image_2d_multisample : Proc #

Retrieves a Proc for the OpenGL function glTexImage2DMultisample. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_image_2d_multisample? #

Checks if the OpenGL function glTexImage2DMultisample is loaded.


[View source]
def tex_image_3d : Proc #

Retrieves a Proc for the OpenGL function glTexImage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_image_3d? #

Checks if the OpenGL function glTexImage3D is loaded.


[View source]
def tex_image_3d_multisample : Proc #

Retrieves a Proc for the OpenGL function glTexImage3DMultisample. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_image_3d_multisample? #

Checks if the OpenGL function glTexImage3DMultisample is loaded.


[View source]
def tex_parameter_f : Proc #

Retrieves a Proc for the OpenGL function glTexParameterf. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_parameter_f? #

Checks if the OpenGL function glTexParameterf is loaded.


[View source]
def tex_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glTexParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_parameter_fv? #

Checks if the OpenGL function glTexParameterfv is loaded.


[View source]
def tex_parameter_i : Proc #

Retrieves a Proc for the OpenGL function glTexParameteri. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_parameter_i? #

Checks if the OpenGL function glTexParameteri is loaded.


[View source]
def tex_parameter_i_iv : Proc #

Retrieves a Proc for the OpenGL function glTexParameterIiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_parameter_i_iv? #

Checks if the OpenGL function glTexParameterIiv is loaded.


[View source]
def tex_parameter_i_uiv : Proc #

Retrieves a Proc for the OpenGL function glTexParameterIuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_parameter_i_uiv? #

Checks if the OpenGL function glTexParameterIuiv is loaded.


[View source]
def tex_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glTexParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_parameter_iv? #

Checks if the OpenGL function glTexParameteriv is loaded.


[View source]
def tex_storage_1d : Proc #

Retrieves a Proc for the OpenGL function glTexStorage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_storage_1d? #

Checks if the OpenGL function glTexStorage1D is loaded.


[View source]
def tex_storage_2d : Proc #

Retrieves a Proc for the OpenGL function glTexStorage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_storage_2d? #

Checks if the OpenGL function glTexStorage2D is loaded.


[View source]
def tex_storage_2d_multisample : Proc #

Retrieves a Proc for the OpenGL function glTexStorage2DMultisample. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_storage_2d_multisample? #

Checks if the OpenGL function glTexStorage2DMultisample is loaded.


[View source]
def tex_storage_3d : Proc #

Retrieves a Proc for the OpenGL function glTexStorage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_storage_3d? #

Checks if the OpenGL function glTexStorage3D is loaded.


[View source]
def tex_storage_3d_multisample : Proc #

Retrieves a Proc for the OpenGL function glTexStorage3DMultisample. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_storage_3d_multisample? #

Checks if the OpenGL function glTexStorage3DMultisample is loaded.


[View source]
def tex_sub_image_1d : Proc #

Retrieves a Proc for the OpenGL function glTexSubImage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_sub_image_1d? #

Checks if the OpenGL function glTexSubImage1D is loaded.


[View source]
def tex_sub_image_2d : Proc #

Retrieves a Proc for the OpenGL function glTexSubImage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_sub_image_2d? #

Checks if the OpenGL function glTexSubImage2D is loaded.


[View source]
def tex_sub_image_3d : Proc #

Retrieves a Proc for the OpenGL function glTexSubImage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def tex_sub_image_3d? #

Checks if the OpenGL function glTexSubImage3D is loaded.


[View source]
def texture_barrier : Proc #

Retrieves a Proc for the OpenGL function glTextureBarrier. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_barrier? #

Checks if the OpenGL function glTextureBarrier is loaded.


[View source]
def texture_buffer : Proc #

Retrieves a Proc for the OpenGL function glTextureBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_buffer? #

Checks if the OpenGL function glTextureBuffer is loaded.


[View source]
def texture_buffer_range : Proc #

Retrieves a Proc for the OpenGL function glTextureBufferRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_buffer_range? #

Checks if the OpenGL function glTextureBufferRange is loaded.


[View source]
def texture_parameter_f : Proc #

Retrieves a Proc for the OpenGL function glTextureParameterf. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_parameter_f? #

Checks if the OpenGL function glTextureParameterf is loaded.


[View source]
def texture_parameter_fv : Proc #

Retrieves a Proc for the OpenGL function glTextureParameterfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_parameter_fv? #

Checks if the OpenGL function glTextureParameterfv is loaded.


[View source]
def texture_parameter_i : Proc #

Retrieves a Proc for the OpenGL function glTextureParameteri. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_parameter_i? #

Checks if the OpenGL function glTextureParameteri is loaded.


[View source]
def texture_parameter_i_iv : Proc #

Retrieves a Proc for the OpenGL function glTextureParameterIiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_parameter_i_iv? #

Checks if the OpenGL function glTextureParameterIiv is loaded.


[View source]
def texture_parameter_i_uiv : Proc #

Retrieves a Proc for the OpenGL function glTextureParameterIuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_parameter_i_uiv? #

Checks if the OpenGL function glTextureParameterIuiv is loaded.


[View source]
def texture_parameter_iv : Proc #

Retrieves a Proc for the OpenGL function glTextureParameteriv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_parameter_iv? #

Checks if the OpenGL function glTextureParameteriv is loaded.


[View source]
def texture_storage_1d : Proc #

Retrieves a Proc for the OpenGL function glTextureStorage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_storage_1d? #

Checks if the OpenGL function glTextureStorage1D is loaded.


[View source]
def texture_storage_2d : Proc #

Retrieves a Proc for the OpenGL function glTextureStorage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_storage_2d? #

Checks if the OpenGL function glTextureStorage2D is loaded.


[View source]
def texture_storage_2d_multisample : Proc #

Retrieves a Proc for the OpenGL function glTextureStorage2DMultisample. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_storage_2d_multisample? #

Checks if the OpenGL function glTextureStorage2DMultisample is loaded.


[View source]
def texture_storage_3d : Proc #

Retrieves a Proc for the OpenGL function glTextureStorage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_storage_3d? #

Checks if the OpenGL function glTextureStorage3D is loaded.


[View source]
def texture_storage_3d_multisample : Proc #

Retrieves a Proc for the OpenGL function glTextureStorage3DMultisample. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_storage_3d_multisample? #

Checks if the OpenGL function glTextureStorage3DMultisample is loaded.


[View source]
def texture_sub_image_1d : Proc #

Retrieves a Proc for the OpenGL function glTextureSubImage1D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_sub_image_1d? #

Checks if the OpenGL function glTextureSubImage1D is loaded.


[View source]
def texture_sub_image_2d : Proc #

Retrieves a Proc for the OpenGL function glTextureSubImage2D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_sub_image_2d? #

Checks if the OpenGL function glTextureSubImage2D is loaded.


[View source]
def texture_sub_image_3d : Proc #

Retrieves a Proc for the OpenGL function glTextureSubImage3D. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_sub_image_3d? #

Checks if the OpenGL function glTextureSubImage3D is loaded.


[View source]
def texture_view : Proc #

Retrieves a Proc for the OpenGL function glTextureView. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def texture_view? #

Checks if the OpenGL function glTextureView is loaded.


[View source]
def transform_feedback_buffer_base : Proc #

Retrieves a Proc for the OpenGL function glTransformFeedbackBufferBase. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def transform_feedback_buffer_base? #

Checks if the OpenGL function glTransformFeedbackBufferBase is loaded.


[View source]
def transform_feedback_buffer_range : Proc #

Retrieves a Proc for the OpenGL function glTransformFeedbackBufferRange. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def transform_feedback_buffer_range? #

Checks if the OpenGL function glTransformFeedbackBufferRange is loaded.


[View source]
def transform_feedback_varyings : Proc #

Retrieves a Proc for the OpenGL function glTransformFeedbackVaryings. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def transform_feedback_varyings? #

Checks if the OpenGL function glTransformFeedbackVaryings is loaded.


[View source]
def uniform_1d : Proc #

Retrieves a Proc for the OpenGL function glUniform1d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_1d? #

Checks if the OpenGL function glUniform1d is loaded.


[View source]
def uniform_1dv : Proc #

Retrieves a Proc for the OpenGL function glUniform1dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_1dv? #

Checks if the OpenGL function glUniform1dv is loaded.


[View source]
def uniform_1f : Proc #

Retrieves a Proc for the OpenGL function glUniform1f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_1f? #

Checks if the OpenGL function glUniform1f is loaded.


[View source]
def uniform_1fv : Proc #

Retrieves a Proc for the OpenGL function glUniform1fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_1fv? #

Checks if the OpenGL function glUniform1fv is loaded.


[View source]
def uniform_1i : Proc #

Retrieves a Proc for the OpenGL function glUniform1i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_1i? #

Checks if the OpenGL function glUniform1i is loaded.


[View source]
def uniform_1iv : Proc #

Retrieves a Proc for the OpenGL function glUniform1iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_1iv? #

Checks if the OpenGL function glUniform1iv is loaded.


[View source]
def uniform_1ui : Proc #

Retrieves a Proc for the OpenGL function glUniform1ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_1ui? #

Checks if the OpenGL function glUniform1ui is loaded.


[View source]
def uniform_1uiv : Proc #

Retrieves a Proc for the OpenGL function glUniform1uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_1uiv? #

Checks if the OpenGL function glUniform1uiv is loaded.


[View source]
def uniform_2d : Proc #

Retrieves a Proc for the OpenGL function glUniform2d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_2d? #

Checks if the OpenGL function glUniform2d is loaded.


[View source]
def uniform_2dv : Proc #

Retrieves a Proc for the OpenGL function glUniform2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_2dv? #

Checks if the OpenGL function glUniform2dv is loaded.


[View source]
def uniform_2f : Proc #

Retrieves a Proc for the OpenGL function glUniform2f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_2f? #

Checks if the OpenGL function glUniform2f is loaded.


[View source]
def uniform_2fv : Proc #

Retrieves a Proc for the OpenGL function glUniform2fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_2fv? #

Checks if the OpenGL function glUniform2fv is loaded.


[View source]
def uniform_2i : Proc #

Retrieves a Proc for the OpenGL function glUniform2i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_2i? #

Checks if the OpenGL function glUniform2i is loaded.


[View source]
def uniform_2iv : Proc #

Retrieves a Proc for the OpenGL function glUniform2iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_2iv? #

Checks if the OpenGL function glUniform2iv is loaded.


[View source]
def uniform_2ui : Proc #

Retrieves a Proc for the OpenGL function glUniform2ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_2ui? #

Checks if the OpenGL function glUniform2ui is loaded.


[View source]
def uniform_2uiv : Proc #

Retrieves a Proc for the OpenGL function glUniform2uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_2uiv? #

Checks if the OpenGL function glUniform2uiv is loaded.


[View source]
def uniform_3d : Proc #

Retrieves a Proc for the OpenGL function glUniform3d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_3d? #

Checks if the OpenGL function glUniform3d is loaded.


[View source]
def uniform_3dv : Proc #

Retrieves a Proc for the OpenGL function glUniform3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_3dv? #

Checks if the OpenGL function glUniform3dv is loaded.


[View source]
def uniform_3f : Proc #

Retrieves a Proc for the OpenGL function glUniform3f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_3f? #

Checks if the OpenGL function glUniform3f is loaded.


[View source]
def uniform_3fv : Proc #

Retrieves a Proc for the OpenGL function glUniform3fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_3fv? #

Checks if the OpenGL function glUniform3fv is loaded.


[View source]
def uniform_3i : Proc #

Retrieves a Proc for the OpenGL function glUniform3i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_3i? #

Checks if the OpenGL function glUniform3i is loaded.


[View source]
def uniform_3iv : Proc #

Retrieves a Proc for the OpenGL function glUniform3iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_3iv? #

Checks if the OpenGL function glUniform3iv is loaded.


[View source]
def uniform_3ui : Proc #

Retrieves a Proc for the OpenGL function glUniform3ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_3ui? #

Checks if the OpenGL function glUniform3ui is loaded.


[View source]
def uniform_3uiv : Proc #

Retrieves a Proc for the OpenGL function glUniform3uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_3uiv? #

Checks if the OpenGL function glUniform3uiv is loaded.


[View source]
def uniform_4d : Proc #

Retrieves a Proc for the OpenGL function glUniform4d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_4d? #

Checks if the OpenGL function glUniform4d is loaded.


[View source]
def uniform_4dv : Proc #

Retrieves a Proc for the OpenGL function glUniform4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_4dv? #

Checks if the OpenGL function glUniform4dv is loaded.


[View source]
def uniform_4f : Proc #

Retrieves a Proc for the OpenGL function glUniform4f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_4f? #

Checks if the OpenGL function glUniform4f is loaded.


[View source]
def uniform_4fv : Proc #

Retrieves a Proc for the OpenGL function glUniform4fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_4fv? #

Checks if the OpenGL function glUniform4fv is loaded.


[View source]
def uniform_4i : Proc #

Retrieves a Proc for the OpenGL function glUniform4i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_4i? #

Checks if the OpenGL function glUniform4i is loaded.


[View source]
def uniform_4iv : Proc #

Retrieves a Proc for the OpenGL function glUniform4iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_4iv? #

Checks if the OpenGL function glUniform4iv is loaded.


[View source]
def uniform_4ui : Proc #

Retrieves a Proc for the OpenGL function glUniform4ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_4ui? #

Checks if the OpenGL function glUniform4ui is loaded.


[View source]
def uniform_4uiv : Proc #

Retrieves a Proc for the OpenGL function glUniform4uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_4uiv? #

Checks if the OpenGL function glUniform4uiv is loaded.


[View source]
def uniform_block_binding : Proc #

Retrieves a Proc for the OpenGL function glUniformBlockBinding. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_block_binding? #

Checks if the OpenGL function glUniformBlockBinding is loaded.


[View source]
def uniform_matrix2_dv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix2_dv? #

Checks if the OpenGL function glUniformMatrix2dv is loaded.


[View source]
def uniform_matrix2_fv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix2fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix2_fv? #

Checks if the OpenGL function glUniformMatrix2fv is loaded.


[View source]
def uniform_matrix2x3_dv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix2x3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix2x3_dv? #

Checks if the OpenGL function glUniformMatrix2x3dv is loaded.


[View source]
def uniform_matrix2x3_fv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix2x3fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix2x3_fv? #

Checks if the OpenGL function glUniformMatrix2x3fv is loaded.


[View source]
def uniform_matrix2x4_dv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix2x4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix2x4_dv? #

Checks if the OpenGL function glUniformMatrix2x4dv is loaded.


[View source]
def uniform_matrix2x4_fv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix2x4fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix2x4_fv? #

Checks if the OpenGL function glUniformMatrix2x4fv is loaded.


[View source]
def uniform_matrix3_dv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix3_dv? #

Checks if the OpenGL function glUniformMatrix3dv is loaded.


[View source]
def uniform_matrix3_fv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix3fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix3_fv? #

Checks if the OpenGL function glUniformMatrix3fv is loaded.


[View source]
def uniform_matrix3x2_dv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix3x2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix3x2_dv? #

Checks if the OpenGL function glUniformMatrix3x2dv is loaded.


[View source]
def uniform_matrix3x2_fv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix3x2fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix3x2_fv? #

Checks if the OpenGL function glUniformMatrix3x2fv is loaded.


[View source]
def uniform_matrix3x4_dv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix3x4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix3x4_dv? #

Checks if the OpenGL function glUniformMatrix3x4dv is loaded.


[View source]
def uniform_matrix3x4_fv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix3x4fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix3x4_fv? #

Checks if the OpenGL function glUniformMatrix3x4fv is loaded.


[View source]
def uniform_matrix4_dv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix4_dv? #

Checks if the OpenGL function glUniformMatrix4dv is loaded.


[View source]
def uniform_matrix4_fv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix4fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix4_fv? #

Checks if the OpenGL function glUniformMatrix4fv is loaded.


[View source]
def uniform_matrix4x2_dv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix4x2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix4x2_dv? #

Checks if the OpenGL function glUniformMatrix4x2dv is loaded.


[View source]
def uniform_matrix4x2_fv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix4x2fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix4x2_fv? #

Checks if the OpenGL function glUniformMatrix4x2fv is loaded.


[View source]
def uniform_matrix4x3_dv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix4x3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix4x3_dv? #

Checks if the OpenGL function glUniformMatrix4x3dv is loaded.


[View source]
def uniform_matrix4x3_fv : Proc #

Retrieves a Proc for the OpenGL function glUniformMatrix4x3fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_matrix4x3_fv? #

Checks if the OpenGL function glUniformMatrix4x3fv is loaded.


[View source]
def uniform_subroutines_uiv : Proc #

Retrieves a Proc for the OpenGL function glUniformSubroutinesuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def uniform_subroutines_uiv? #

Checks if the OpenGL function glUniformSubroutinesuiv is loaded.


[View source]
def unmap_buffer : Proc #

Retrieves a Proc for the OpenGL function glUnmapBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def unmap_buffer? #

Checks if the OpenGL function glUnmapBuffer is loaded.


[View source]
def unmap_named_buffer : Proc #

Retrieves a Proc for the OpenGL function glUnmapNamedBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def unmap_named_buffer? #

Checks if the OpenGL function glUnmapNamedBuffer is loaded.


[View source]
def use_program : Proc #

Retrieves a Proc for the OpenGL function glUseProgram. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def use_program? #

Checks if the OpenGL function glUseProgram is loaded.


[View source]
def use_program_stages : Proc #

Retrieves a Proc for the OpenGL function glUseProgramStages. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def use_program_stages? #

Checks if the OpenGL function glUseProgramStages is loaded.


[View source]
def validate_program : Proc #

Retrieves a Proc for the OpenGL function glValidateProgram. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def validate_program? #

Checks if the OpenGL function glValidateProgram is loaded.


[View source]
def validate_program_pipeline : Proc #

Retrieves a Proc for the OpenGL function glValidateProgramPipeline. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def validate_program_pipeline? #

Checks if the OpenGL function glValidateProgramPipeline is loaded.


[View source]
def vertex_array_attrib_binding : Proc #

Retrieves a Proc for the OpenGL function glVertexArrayAttribBinding. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_array_attrib_binding? #

Checks if the OpenGL function glVertexArrayAttribBinding is loaded.


[View source]
def vertex_array_attrib_format : Proc #

Retrieves a Proc for the OpenGL function glVertexArrayAttribFormat. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_array_attrib_format? #

Checks if the OpenGL function glVertexArrayAttribFormat is loaded.


[View source]
def vertex_array_attrib_i_format : Proc #

Retrieves a Proc for the OpenGL function glVertexArrayAttribIFormat. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_array_attrib_i_format? #

Checks if the OpenGL function glVertexArrayAttribIFormat is loaded.


[View source]
def vertex_array_attrib_l_format : Proc #

Retrieves a Proc for the OpenGL function glVertexArrayAttribLFormat. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_array_attrib_l_format? #

Checks if the OpenGL function glVertexArrayAttribLFormat is loaded.


[View source]
def vertex_array_binding_divisor : Proc #

Retrieves a Proc for the OpenGL function glVertexArrayBindingDivisor. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_array_binding_divisor? #

Checks if the OpenGL function glVertexArrayBindingDivisor is loaded.


[View source]
def vertex_array_element_buffer : Proc #

Retrieves a Proc for the OpenGL function glVertexArrayElementBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_array_element_buffer? #

Checks if the OpenGL function glVertexArrayElementBuffer is loaded.


[View source]
def vertex_array_vertex_buffer : Proc #

Retrieves a Proc for the OpenGL function glVertexArrayVertexBuffer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_array_vertex_buffer? #

Checks if the OpenGL function glVertexArrayVertexBuffer is loaded.


[View source]
def vertex_array_vertex_buffers : Proc #

Retrieves a Proc for the OpenGL function glVertexArrayVertexBuffers. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_array_vertex_buffers? #

Checks if the OpenGL function glVertexArrayVertexBuffers is loaded.


[View source]
def vertex_attrib_1d : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib1d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_1d? #

Checks if the OpenGL function glVertexAttrib1d is loaded.


[View source]
def vertex_attrib_1dv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib1dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_1dv? #

Checks if the OpenGL function glVertexAttrib1dv is loaded.


[View source]
def vertex_attrib_1f : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib1f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_1f? #

Checks if the OpenGL function glVertexAttrib1f is loaded.


[View source]
def vertex_attrib_1fv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib1fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_1fv? #

Checks if the OpenGL function glVertexAttrib1fv is loaded.


[View source]
def vertex_attrib_1s : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib1s. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_1s? #

Checks if the OpenGL function glVertexAttrib1s is loaded.


[View source]
def vertex_attrib_1sv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib1sv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_1sv? #

Checks if the OpenGL function glVertexAttrib1sv is loaded.


[View source]
def vertex_attrib_2d : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib2d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_2d? #

Checks if the OpenGL function glVertexAttrib2d is loaded.


[View source]
def vertex_attrib_2dv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_2dv? #

Checks if the OpenGL function glVertexAttrib2dv is loaded.


[View source]
def vertex_attrib_2f : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib2f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_2f? #

Checks if the OpenGL function glVertexAttrib2f is loaded.


[View source]
def vertex_attrib_2fv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib2fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_2fv? #

Checks if the OpenGL function glVertexAttrib2fv is loaded.


[View source]
def vertex_attrib_2s : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib2s. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_2s? #

Checks if the OpenGL function glVertexAttrib2s is loaded.


[View source]
def vertex_attrib_2sv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib2sv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_2sv? #

Checks if the OpenGL function glVertexAttrib2sv is loaded.


[View source]
def vertex_attrib_3d : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib3d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_3d? #

Checks if the OpenGL function glVertexAttrib3d is loaded.


[View source]
def vertex_attrib_3dv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_3dv? #

Checks if the OpenGL function glVertexAttrib3dv is loaded.


[View source]
def vertex_attrib_3f : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib3f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_3f? #

Checks if the OpenGL function glVertexAttrib3f is loaded.


[View source]
def vertex_attrib_3fv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib3fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_3fv? #

Checks if the OpenGL function glVertexAttrib3fv is loaded.


[View source]
def vertex_attrib_3s : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib3s. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_3s? #

Checks if the OpenGL function glVertexAttrib3s is loaded.


[View source]
def vertex_attrib_3sv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib3sv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_3sv? #

Checks if the OpenGL function glVertexAttrib3sv is loaded.


[View source]
def vertex_attrib_4bv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4bv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4bv? #

Checks if the OpenGL function glVertexAttrib4bv is loaded.


[View source]
def vertex_attrib_4d : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4d? #

Checks if the OpenGL function glVertexAttrib4d is loaded.


[View source]
def vertex_attrib_4dv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4dv? #

Checks if the OpenGL function glVertexAttrib4dv is loaded.


[View source]
def vertex_attrib_4f : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4f. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4f? #

Checks if the OpenGL function glVertexAttrib4f is loaded.


[View source]
def vertex_attrib_4fv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4fv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4fv? #

Checks if the OpenGL function glVertexAttrib4fv is loaded.


[View source]
def vertex_attrib_4iv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4iv? #

Checks if the OpenGL function glVertexAttrib4iv is loaded.


[View source]
def vertex_attrib_4nbv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4Nbv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4nbv? #

Checks if the OpenGL function glVertexAttrib4Nbv is loaded.


[View source]
def vertex_attrib_4niv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4Niv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4niv? #

Checks if the OpenGL function glVertexAttrib4Niv is loaded.


[View source]
def vertex_attrib_4nsv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4Nsv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4nsv? #

Checks if the OpenGL function glVertexAttrib4Nsv is loaded.


[View source]
def vertex_attrib_4nub : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4Nub. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4nub? #

Checks if the OpenGL function glVertexAttrib4Nub is loaded.


[View source]
def vertex_attrib_4nubv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4Nubv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4nubv? #

Checks if the OpenGL function glVertexAttrib4Nubv is loaded.


[View source]
def vertex_attrib_4nuiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4Nuiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4nuiv? #

Checks if the OpenGL function glVertexAttrib4Nuiv is loaded.


[View source]
def vertex_attrib_4nusv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4Nusv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4nusv? #

Checks if the OpenGL function glVertexAttrib4Nusv is loaded.


[View source]
def vertex_attrib_4s : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4s. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4s? #

Checks if the OpenGL function glVertexAttrib4s is loaded.


[View source]
def vertex_attrib_4sv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4sv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4sv? #

Checks if the OpenGL function glVertexAttrib4sv is loaded.


[View source]
def vertex_attrib_4ubv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4ubv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4ubv? #

Checks if the OpenGL function glVertexAttrib4ubv is loaded.


[View source]
def vertex_attrib_4uiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4uiv? #

Checks if the OpenGL function glVertexAttrib4uiv is loaded.


[View source]
def vertex_attrib_4usv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttrib4usv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_4usv? #

Checks if the OpenGL function glVertexAttrib4usv is loaded.


[View source]
def vertex_attrib_binding : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribBinding. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_binding? #

Checks if the OpenGL function glVertexAttribBinding is loaded.


[View source]
def vertex_attrib_divisor : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribDivisor. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_divisor? #

Checks if the OpenGL function glVertexAttribDivisor is loaded.


[View source]
def vertex_attrib_format : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribFormat. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_format? #

Checks if the OpenGL function glVertexAttribFormat is loaded.


[View source]
def vertex_attrib_i_1i : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI1i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_1i? #

Checks if the OpenGL function glVertexAttribI1i is loaded.


[View source]
def vertex_attrib_i_1iv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI1iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_1iv? #

Checks if the OpenGL function glVertexAttribI1iv is loaded.


[View source]
def vertex_attrib_i_1ui : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI1ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_1ui? #

Checks if the OpenGL function glVertexAttribI1ui is loaded.


[View source]
def vertex_attrib_i_1uiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI1uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_1uiv? #

Checks if the OpenGL function glVertexAttribI1uiv is loaded.


[View source]
def vertex_attrib_i_2i : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI2i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_2i? #

Checks if the OpenGL function glVertexAttribI2i is loaded.


[View source]
def vertex_attrib_i_2iv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI2iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_2iv? #

Checks if the OpenGL function glVertexAttribI2iv is loaded.


[View source]
def vertex_attrib_i_2ui : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI2ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_2ui? #

Checks if the OpenGL function glVertexAttribI2ui is loaded.


[View source]
def vertex_attrib_i_2uiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI2uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_2uiv? #

Checks if the OpenGL function glVertexAttribI2uiv is loaded.


[View source]
def vertex_attrib_i_3i : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI3i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_3i? #

Checks if the OpenGL function glVertexAttribI3i is loaded.


[View source]
def vertex_attrib_i_3iv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI3iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_3iv? #

Checks if the OpenGL function glVertexAttribI3iv is loaded.


[View source]
def vertex_attrib_i_3ui : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI3ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_3ui? #

Checks if the OpenGL function glVertexAttribI3ui is loaded.


[View source]
def vertex_attrib_i_3uiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI3uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_3uiv? #

Checks if the OpenGL function glVertexAttribI3uiv is loaded.


[View source]
def vertex_attrib_i_4bv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI4bv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_4bv? #

Checks if the OpenGL function glVertexAttribI4bv is loaded.


[View source]
def vertex_attrib_i_4i : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI4i. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_4i? #

Checks if the OpenGL function glVertexAttribI4i is loaded.


[View source]
def vertex_attrib_i_4iv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI4iv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_4iv? #

Checks if the OpenGL function glVertexAttribI4iv is loaded.


[View source]
def vertex_attrib_i_4sv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI4sv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_4sv? #

Checks if the OpenGL function glVertexAttribI4sv is loaded.


[View source]
def vertex_attrib_i_4ubv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI4ubv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_4ubv? #

Checks if the OpenGL function glVertexAttribI4ubv is loaded.


[View source]
def vertex_attrib_i_4ui : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI4ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_4ui? #

Checks if the OpenGL function glVertexAttribI4ui is loaded.


[View source]
def vertex_attrib_i_4uiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI4uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_4uiv? #

Checks if the OpenGL function glVertexAttribI4uiv is loaded.


[View source]
def vertex_attrib_i_4usv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribI4usv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_4usv? #

Checks if the OpenGL function glVertexAttribI4usv is loaded.


[View source]
def vertex_attrib_i_format : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribIFormat. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_format? #

Checks if the OpenGL function glVertexAttribIFormat is loaded.


[View source]
def vertex_attrib_i_pointer : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribIPointer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_i_pointer? #

Checks if the OpenGL function glVertexAttribIPointer is loaded.


[View source]
def vertex_attrib_l_1d : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribL1d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_1d? #

Checks if the OpenGL function glVertexAttribL1d is loaded.


[View source]
def vertex_attrib_l_1dv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribL1dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_1dv? #

Checks if the OpenGL function glVertexAttribL1dv is loaded.


[View source]
def vertex_attrib_l_2d : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribL2d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_2d? #

Checks if the OpenGL function glVertexAttribL2d is loaded.


[View source]
def vertex_attrib_l_2dv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribL2dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_2dv? #

Checks if the OpenGL function glVertexAttribL2dv is loaded.


[View source]
def vertex_attrib_l_3d : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribL3d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_3d? #

Checks if the OpenGL function glVertexAttribL3d is loaded.


[View source]
def vertex_attrib_l_3dv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribL3dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_3dv? #

Checks if the OpenGL function glVertexAttribL3dv is loaded.


[View source]
def vertex_attrib_l_4d : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribL4d. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_4d? #

Checks if the OpenGL function glVertexAttribL4d is loaded.


[View source]
def vertex_attrib_l_4dv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribL4dv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_4dv? #

Checks if the OpenGL function glVertexAttribL4dv is loaded.


[View source]
def vertex_attrib_l_format : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribLFormat. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_format? #

Checks if the OpenGL function glVertexAttribLFormat is loaded.


[View source]
def vertex_attrib_l_pointer : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribLPointer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_l_pointer? #

Checks if the OpenGL function glVertexAttribLPointer is loaded.


[View source]
def vertex_attrib_p_1ui : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribP1ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_p_1ui? #

Checks if the OpenGL function glVertexAttribP1ui is loaded.


[View source]
def vertex_attrib_p_1uiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribP1uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_p_1uiv? #

Checks if the OpenGL function glVertexAttribP1uiv is loaded.


[View source]
def vertex_attrib_p_2ui : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribP2ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_p_2ui? #

Checks if the OpenGL function glVertexAttribP2ui is loaded.


[View source]
def vertex_attrib_p_2uiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribP2uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_p_2uiv? #

Checks if the OpenGL function glVertexAttribP2uiv is loaded.


[View source]
def vertex_attrib_p_3ui : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribP3ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_p_3ui? #

Checks if the OpenGL function glVertexAttribP3ui is loaded.


[View source]
def vertex_attrib_p_3uiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribP3uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_p_3uiv? #

Checks if the OpenGL function glVertexAttribP3uiv is loaded.


[View source]
def vertex_attrib_p_4ui : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribP4ui. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_p_4ui? #

Checks if the OpenGL function glVertexAttribP4ui is loaded.


[View source]
def vertex_attrib_p_4uiv : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribP4uiv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_p_4uiv? #

Checks if the OpenGL function glVertexAttribP4uiv is loaded.


[View source]
def vertex_attrib_pointer : Proc #

Retrieves a Proc for the OpenGL function glVertexAttribPointer. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_attrib_pointer? #

Checks if the OpenGL function glVertexAttribPointer is loaded.


[View source]
def vertex_binding_divisor : Proc #

Retrieves a Proc for the OpenGL function glVertexBindingDivisor. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def vertex_binding_divisor? #

Checks if the OpenGL function glVertexBindingDivisor is loaded.


[View source]
def viewport : Proc #

Retrieves a Proc for the OpenGL function glViewport. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def viewport? #

Checks if the OpenGL function glViewport is loaded.


[View source]
def viewport_array_v : Proc #

Retrieves a Proc for the OpenGL function glViewportArrayv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def viewport_array_v? #

Checks if the OpenGL function glViewportArrayv is loaded.


[View source]
def viewport_indexed_f : Proc #

Retrieves a Proc for the OpenGL function glViewportIndexedf. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def viewport_indexed_f? #

Checks if the OpenGL function glViewportIndexedf is loaded.


[View source]
def viewport_indexed_fv : Proc #

Retrieves a Proc for the OpenGL function glViewportIndexedfv. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def viewport_indexed_fv? #

Checks if the OpenGL function glViewportIndexedfv is loaded.


[View source]
def wait_sync : Proc #

Retrieves a Proc for the OpenGL function glWaitSync. Attempts to retrieve (load) the address of the function if it hasn't already been retrieved. Raises FunctionUnavailableError if the function isn't found.


[View source]
def wait_sync? #

Checks if the OpenGL function glWaitSync is loaded.


[View source]