'''OpenGL extension QCOM.alpha_testThis module customises the behaviour of the OpenGL.raw.GLES2.QCOM.alpha_test to provide a more Python-friendly APIThe official definition of this extension is available here:http://www.opengl.org/registry/specs/QCOM/alpha_test.txt'''fromOpenGLimportplatform,constant,arraysfromOpenGLimportextensions,wrapperimportctypesfromOpenGL.raw.GLES2import_types,_glgetsfromOpenGL.raw.GLES2.QCOM.alpha_testimport*fromOpenGL.raw.GLES2.QCOM.alpha_testimport_EXTENSION_NAMEdefglInitAlphaTestQCOM():'''Return boolean indicating whether this extension is available'''fromOpenGLimportextensionsreturnextensions.hasGLExtension(_EXTENSION_NAME)### END AUTOGENERATED SECTION