~matobet/pyopengl/Python3

« back to all changes in this revision

Viewing changes to raw/GL/ARB/sample_shading.py

  • Committer: matobet at gmail
  • Date: 2010-06-26 14:11:04 UTC
  • Revision ID: matobet@gmail.com-20100626141104-k011ofmltgiiu60g
Initial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'''OpenGL extension ARB.sample_shading
 
2
 
 
3
Automatically generated by the get_gl_extensions script, do not edit!
 
4
'''
 
5
from OpenGL import platform, constants, constant, arrays
 
6
from OpenGL import extensions
 
7
from OpenGL.GL import glget
 
8
import ctypes
 
9
EXTENSION_NAME = 'GL_ARB_sample_shading'
 
10
_DEPRECATED = False
 
11
GL_SAMPLE_SHADING = constant.Constant( 'GL_SAMPLE_SHADING', 0x8C36 )
 
12
GL_MIN_SAMPLE_SHADING_VALUE = constant.Constant( 'GL_MIN_SAMPLE_SHADING_VALUE', 0x8C37 )
 
13
glMinSampleShading = platform.createExtensionFunction( 
 
14
'glMinSampleShading',dll=platform.GL,
 
15
extension=EXTENSION_NAME,
 
16
resultType=None, 
 
17
argTypes=(constants.GLclampf,),
 
18
doc='glMinSampleShading(GLclampf(value)) -> None',
 
19
argNames=('value',),
 
20
deprecated=_DEPRECATED,
 
21
)
 
22
 
 
23
 
 
24
def glInitSampleShadingARB():
 
25
    '''Return boolean indicating whether this extension is available'''
 
26
    return extensions.hasGLExtension( EXTENSION_NAME )