a
    i‚j@  ã                   @   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S )
a.  OpenGL extension NV.framebuffer_multisample_coverage

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

Overview (from the spec)
	
	This extension extends the EXT_framebuffer_multisample 
	specification by providing a new function,
	RenderBufferStorageMultisampleCoverageNV, that distinguishes 
	between color samples and coverage samples.
	
	EXT_framebuffer_multisample introduced the function 
	RenderbufferStorageMultisampleEXT as a method of defining the 
	storage parameters for a multisample render buffer.  This function 
	takes a <samples> parameter.  Using rules provided by the 
	specification, the <samples> parameter is resolved to an actual 
	number of samples that is supported by the underlying hardware.  
	EXT_framebuffer_multisample does not specify whether <samples>
	refers to coverage samples or color samples.
	
	This extension adds the function 
	RenderbufferStorageMultisamplCoverageNV, which takes a 
	<coverageSamples> parameter as well as a <colorSamples> parameter.  
	These two parameters give developers more fine grained control over
	the quality of multisampled images.

The official definition of this extension is available here:
http://www.opengl.org/registry/specs/NV/framebuffer_multisample_coverage.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   úk/home/ghrups/robot-bench/.venv/lib/python3.9/site-packages/OpenGL/GL/NV/framebuffer_multisample_coverage.pyÚ&glInitFramebufferMultisampleCoverageNV'   s    r   )Ú__doc__r   r   r   r   r   r   ÚctypesZOpenGL.raw.GLr   r   Z1OpenGL.raw.GL.NV.framebuffer_multisample_coverager
   r   r   r   r   r   Ú<module>   s   