a
    ij                     @   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eed
dZeejd
dddZdS )aq  OpenGL extension OES.single_precision

This module customises the behaviour of the 
OpenGL.raw.GL.OES.single_precision to provide a more 
Python-friendly API

Overview (from the spec)
	
	This extension adds commands with single-precision floating-point
	parameters corresponding to the commands that only variants that
	accept double-precision floating-point input.  This allows an
	application to avoid using double-precision floating-point
	data types.  New commands are added with an 'f' prefix.
	

The official definition of this extension is available here:
http://www.opengl.org/registry/specs/OES/single_precision.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   \/home/ghrups/robot-bench/.venv/lib/python3.9/site-packages/OpenGL/GL/OES/single_precision.pyglInitSinglePrecisionOES   s    r   Zequation   )r   T)sizeZorPassIn)__doc__r   r   r   r   r   r   ctypesZOpenGL.raw.GLr   r   Z"OpenGL.raw.GL.OES.single_precisionr
   r   ZglClipPlanefOESZsetInputArraySizeZglGetClipPlanefOESZ	setOutputr   r   r   r   <module>   s   

