Lines Matching defs:const

42 glw::GenericFuncType RenderContext::getProcAddress (const char*) const
63 const bool forwardCompatible = (ctxType.getFlags() & CONTEXT_FORWARD_COMPATIBLE) != 0;
92 static ContextFlags parseContextFlags (const std::string& flagsStr)
94 const std::vector<std::string> flagNames = de::splitString(flagsStr, ',');
96 static const struct
98 const char* name;
133 RenderContext* createRenderContext (tcu::Platform& platform, const tcu::CommandLine& cmdLine, const RenderConfig& config, const RenderContext* sharedContext)
135 const ContextFactoryRegistry& registry = platform.getGLPlatform().getContextFactoryRegistry();
136 const char* factoryName = cmdLine.getGLContextType();
137 const ContextFactory* factory = DE_NULL;
153 const ContextFactory* curFactory = registry.getFactoryByIndex(factoryNdx);
173 RenderContext* createDefaultRenderContext (tcu::Platform& platform, const tcu::CommandLine& cmdLine, ApiType apiType)
187 static std::vector<std::string> getExtensions (const glw::Functions& gl, ApiType apiType)
196 const char* extStr = (const char*)gl.getString(GL_EXTENSIONS);
220 const char* const ext = (const char*)gl.getStringi(GL_EXTENSIONS, ndx);
235 bool hasExtension (const glw::Functions& gl, ApiType apiType, const std::string& extension)
242 void initCoreFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
244 static const struct
247 void (*initFunc) (glw::Functions* gl, const glw::FunctionLoader* loader);
289 void initExtensionFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
295 std::vector<const char*> extStr(extensions.size());
304 void initExtensionFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType, int numExtensions, const char* const* extensions)
312 void initFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
318 const char* getApiTypeDescription (ApiType type)