HomeSort by relevance Sort by last modified time
    Searched refs:GenericFuncType (Results 1 - 10 of 10) sorted by null

  /external/deqp/framework/opengl/wrapper/
glwFunctionLoader.hpp 31 typedef GLW_APICALL void (GLW_APIENTRY* GenericFuncType) (void);
36 virtual GenericFuncType get (const char* name) const = 0;
  /external/deqp/framework/egl/wrapper/
eglwFunctions.hpp 47 typedef EGLW_APICALL void (EGLW_APIENTRY* GenericFuncType) (void);
52 virtual GenericFuncType get (const char* name) const = 0;
eglwLibrary.cpp 85 GenericFuncType get (const char* name) const
87 GenericFuncType res = (GenericFuncType)DE_NULL;
89 res = (GenericFuncType)m_staticLib->getFunction(name);
92 res = (GenericFuncType)m_dynLib->getFunction(name);
95 res = (GenericFuncType)m_getProcAddress(name);
114 GenericFuncType get (const char* name) const
116 return (GenericFuncType)m_getProcAddress(name);
  /external/deqp/framework/egl/
egluGLFunctionLoader.cpp 38 glw::GenericFuncType GLFunctionLoader::get (const char* name) const
40 glw::GenericFuncType func = (glw::GenericFuncType)m_library->getFunction(name);
43 return (glw::GenericFuncType)m_egl.getProcAddress(name);
egluGLFunctionLoader.hpp 50 glw::GenericFuncType get (const char* name) const;
egluGLContextFactory.cpp 101 glw::GenericFuncType get (const char* name) const
103 return (glw::GenericFuncType)m_egl.getProcAddress(name);
118 glw::GenericFuncType get (const char* name) const
120 return (glw::GenericFuncType)m_library->getFunction(name);
  /external/deqp/framework/opengl/
gluES3PlusWrapperContext.cpp 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::GenericFuncType)src.texStorage3DMultisample;
552 extFuncMap["glBlendBarrierKHR"] = (glw::GenericFuncType)blendBarrierKHR;
555 extFuncMap["glPatchParameteriEXT"] = (glw::GenericFuncType)src.patchParameteri;
558 extFuncMap["glFramebufferTextureEXT"] = (glw::GenericFuncType)src.framebufferTexture
    [all...]
  /external/deqp/framework/platform/win32/
tcuWGLContextFactory.cpp 56 glw::GenericFuncType get (const char* name) const
58 return (glw::GenericFuncType)m_context.getGLFunction(name);
  /external/deqp/framework/platform/osx/
tcuOSXPlatform.cpp 58 glw::GenericFuncType get (const char* name) const
  /external/deqp/framework/platform/lnx/X11/
tcuLnxX11GlxPlatform.cpp 610 glw::GenericFuncType get (const char* name) const

Completed in 126 milliseconds