a
    i‚jy  ã                
   @   sˆ   d Z ddlmZmZmZ ddlmZmZ ddlZddlm	Z	m
Z
 ddlT ddlmZ dd	„ Zdd
lmZ ej ededededi¡ dS )a  OpenGL extension EXT.texture_rg

This module customises the behaviour of the 
OpenGL.raw.GLES2.EXT.texture_rg to provide a more 
Python-friendly API

Overview (from the spec)
	
	Historically one- and two-component textures have been specified in OpenGL
	ES using the luminance or luminance-alpha (L/LA) formats. With the advent
	of programmable shaders and render-to-texture capabilities these legacy
	formats carry some historical artifacts which are no longer useful.
	
	For example, when sampling from such textures, the luminance values are
	replicated across the color components. This is no longer necessary with
	programmable shaders.
	
	It is also desirable to be able to render to one- and two-component format
	textures using capabilities such as framebuffer objects (FBO), but
	rendering to L/LA formats is under-specified (specifically how to map
	R/G/B/A values to L/A texture channels).
	
	This extension adds new base internal formats for one-component RED and
	two-component RG (red green) textures as well as sized RED and RG internal
	formats for renderbuffers. The RED and RG texture formats can be used for
	both texturing and rendering into with framebuffer objects.

The official definition of this extension is available here:
http://www.opengl.org/registry/specs/EXT/texture_rg.txt
é    )ÚplatformÚconstantÚarrays)Ú
extensionsÚwrapperN)Ú_typesÚ_glgets)Ú*)Ú_EXTENSION_NAMEc                  C   s   ddl m}  |  t¡S )z=Return boolean indicating whether this extension is availabler   ©r   )ÚOpenGLr   ZhasGLExtensionr
   r   © r   úY/home/ghrups/robot-bench/.venv/lib/python3.9/site-packages/OpenGL/GLES2/EXT/texture_rg.pyÚglInitTextureRgEXT&   s    r   )Úimagesé   é   )Ú__doc__r   r   r   r   r   r   ÚctypesZOpenGL.raw.GLES2r   r   ZOpenGL.raw.GLES2.EXT.texture_rgr
   r   r   Z_imagesZCOMPONENT_COUNTSÚupdateZ	GL_R8_EXTZ
GL_RED_EXTZ
GL_RG8_EXTZ	GL_RG_EXTr   r   r   r   Ú<module>   s   ü