'''OpenGL extension OML.sync_controlThis module customises the behaviour of the OpenGL.raw.WGL.OML.sync_control to provide a more Python-friendly APIThe official definition of this extension is available here:http://www.opengl.org/registry/specs/OML/sync_control.txt'''fromOpenGLimportplatform,constant,arraysfromOpenGLimportextensions,wrapperimportctypesfromOpenGL.raw.WGLimport_types,_glgetsfromOpenGL.raw.WGL.OML.sync_controlimport*fromOpenGL.raw.WGL.OML.sync_controlimport_EXTENSION_NAMEdefglInitSyncControlOML():'''Return boolean indicating whether this extension is available'''fromOpenGLimportextensionsreturnextensions.hasGLExtension(_EXTENSION_NAME)### END AUTOGENERATED SECTION