Lines Matching defs:loader
242 void initCoreFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
247 void (*initFunc) (glw::Functions* gl, const glw::FunctionLoader* loader);
281 s_initFuncs[ndx].initFunc(dst, loader);
289 void initExtensionFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
300 initExtensionFunctions(dst, loader, apiType, (int)extStr.size(), &extStr[0]);
304 void initExtensionFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType, int numExtensions, const char* const* extensions)
307 glw::initExtensionsES(dst, loader, numExtensions, extensions);
309 glw::initExtensionsGL(dst, loader, numExtensions, extensions);
312 void initFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
314 initCoreFunctions(dst, loader, apiType);
315 initExtensionFunctions(dst, loader, apiType);