Home | History | Annotate | Download | only in opengl

Lines Matching refs:glw

61 	const glw::Functions&		gl;			//!< GL 4.3 core context functions.
182 static GLW_APICALL const glw::GLubyte* GLW_APIENTRY getString (deUint32 name)
190 case GL_VENDOR: return (const glw::GLubyte*)context->vendor.c_str();
191 case GL_VERSION: return (const glw::GLubyte*)context->version.c_str();
192 case GL_RENDERER: return (const glw::GLubyte*)context->renderer.c_str();
193 case GL_SHADING_LANGUAGE_VERSION: return (const glw::GLubyte*)context->shadingLanguageVersion.c_str();
194 case GL_EXTENSIONS: return (const glw::GLubyte*)context->extensions.c_str();
202 static GLW_APICALL const glw::GLubyte* GLW_APIENTRY getStringi (deUint32 name, deUint32 index)
211 return (const glw::GLubyte*)context->extensionList[index].c_str();
503 static void initFunctions (glw::Functions* dst, const glw::Functions& src)
524 class ExtFuncLoader : public glw::FunctionLoader
527 ExtFuncLoader (const map<string, glw::GenericFuncType>& extFuncs)
532 glw::GenericFuncType get (const char* name) const
534 map<string, glw::GenericFuncType>::const_iterator pos = m_extFuncs.find(name);
539 const map<string, glw::GenericFuncType>& m_extFuncs;
542 map<string, glw::GenericFuncType> extFuncMap;
546 extFuncMap["glMinSampleShadingOES"] = (glw::GenericFuncType)src.minSampleShading;
549 extFuncMap["glTexStorage3DMultisampleOES"] = (glw
552 extFuncMap["glBlendBarrierKHR"] = (glw::GenericFuncType)blendBarrierKHR;
555 extFuncMap["glPatchParameteriEXT"] = (glw::GenericFuncType)src.patchParameteri;
558 extFuncMap["glFramebufferTextureEXT"] = (glw::GenericFuncType)src.framebufferTexture;
561 extFuncMap["glDebugMessageControlKHR"] = (glw::GenericFuncType)src.debugMessageControl;
562 extFuncMap["glDebugMessageInsertKHR"] = (glw::GenericFuncType)src.debugMessageInsert;
563 extFuncMap["glDebugMessageCallbackKHR"] = (glw::GenericFuncType)src.debugMessageCallback;
564 extFuncMap["glGetDebugMessageLogKHR"] = (glw::GenericFuncType)src.getDebugMessageLog;
565 extFuncMap["glGetPointervKHR"] = (glw::GenericFuncType)src.getPointerv;
566 extFuncMap["glPushDebugGroupKHR"] = (glw::GenericFuncType)src.pushDebugGroup;
567 extFuncMap["glPopDebugGroupKHR"] = (glw::GenericFuncType)src.popDebugGroup;
568 extFuncMap["glObjectLabelKHR"] = (glw::GenericFuncType)src.objectLabel;
569 extFuncMap["glGetObjectLabelKHR"] = (glw::GenericFuncType)src.getObjectLabel;
570 extFuncMap["glObjectPtrLabelKHR"] = (glw::GenericFuncType)src.objectPtrLabel;
571 extFuncMap["glGetObjectPtrLabelKHR"] = (glw::GenericFuncType)src.getObjectPtrLabel;
574 extFuncMap["glPrimitiveBoundingBoxEXT"] = (glw::GenericFuncType)dummyPrimitiveBoundingBox;
577 extFuncMap["glTexParameterIivEXT"] = (glw::GenericFuncType)src.texParameterIiv;
578 extFuncMap["glTexParameterIuivEXT"] = (glw::GenericFuncType)src.texParameterIuiv;
579 extFuncMap["glGetTexParameterIivEXT"] = (glw::GenericFuncType)src.getTexParameterIiv;
580 extFuncMap["glGetTexParameterIuivEXT"] = (glw::GenericFuncType)src.getTexParameterIuiv;
581 extFuncMap["glSamplerParameterIivEXT"] = (glw::GenericFuncType)src.samplerParameterIiv;
582 extFuncMap["glSamplerParameterIuivEXT"] = (glw::GenericFuncType)src.samplerParameterIuiv;
583 extFuncMap["glGetSamplerParameterIivEXT"] = (glw::GenericFuncType)src.getSamplerParameterIiv;
584 extFuncMap["glGetSamplerParameterIuivEXT"] = (glw::GenericFuncType)src.getSamplerParameterIuiv;
587 extFuncMap["glTexBufferEXT"] = (glw::GenericFuncType)src.texBuffer;
588 extFuncMap["glTexBufferRangeEXT"] = (glw::GenericFuncType)src.texBufferRange;
591 extFuncMap["glEnableiEXT"] = (glw::GenericFuncType)src.enablei;
592 extFuncMap["glDisableiEXT"] = (glw::GenericFuncType)src.disablei;
593 extFuncMap["glBlendEquationiEXT"] = (glw::GenericFuncType)src.blendEquationi;
594 extFuncMap["glBlendEquationSeparateiEXT"] = (glw::GenericFuncType)src.blendEquationSeparatei;
595 extFuncMap["glBlendFunciEXT"] = (glw::GenericFuncType)src.blendFunci;
596 extFuncMap["glBlendFuncSeparateiEXT"] = (glw::GenericFuncType)src.blendFuncSeparatei;
597 extFuncMap["glColorMaskiEXT"] = (glw::GenericFuncType)src.colorMaski;
598 extFuncMap["glIsEnablediEXT"] = (glw::GenericFuncType)src.isEnabledi;
611 glw::initExtensionsES(dst, &extFuncLoader, (int)extStr.size(), &extStr[0]);