HomeSort by relevance Sort by last modified time
    Searched refs:getProcAddress (Results 1 - 25 of 45) sorted by null

1 2

  /external/swiftshader/src/Main/
libX11.cpp 23 XOpenDisplay = (Display *(*)(char*))getProcAddress(libX11, "XOpenDisplay");
24 XGetWindowAttributes = (Status (*)(Display*, Window, XWindowAttributes*))getProcAddress(libX11, "XGetWindowAttributes");
25 XDefaultScreenOfDisplay = (Screen *(*)(Display*))getProcAddress(libX11, "XDefaultScreenOfDisplay");
26 XWidthOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XWidthOfScreen");
27 XHeightOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XHeightOfScreen");
28 XPlanesOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XPlanesOfScreen");
29 XDefaultGC = (GC (*)(Display*, int))getProcAddress(libX11, "XDefaultGC");
30 XDefaultDepth = (int (*)(Display*, int))getProcAddress(libX11, "XDefaultDepth");
31 XMatchVisualInfo = (Status (*)(Display*, int, int, int, XVisualInfo*))getProcAddress(libX11, "XMatchVisualInfo");
32 XDefaultVisual = (Visual *(*)(Display*, int screen_number))getProcAddress(libX11, "XDefaultVisual")
    [all...]
  /device/generic/goldfish-opengl/system/egl/
ClientAPIExts.h 25 void* getProcAddress(const char *fname);
ClientAPIExts.cpp 69 (FUNC_TYPE(fname))iface->getProcAddress(#fname);
149 void* getProcAddress(const char *fname)
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
EGLClientIface.h 28 void* (*getProcAddress)(const char *funcName);
  /external/swiftshader/src/Common/
SharedLibrary.hpp 27 void *getProcAddress(void *library, const char *name);
38 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol))
53 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol))
83 inline void *getProcAddress(void *library, const char *name)
85 return (void*)GetProcAddress((HMODULE)library, name);
118 inline void *getProcAddress(void *library, const char *name)
  /frameworks/native/opengl/libs/EGL/
Loader.h 46 getProcAddressType getProcAddress;
63 getProcAddressType getProcAddress);
Loader.cpp 166 : getProcAddress(NULL)
265 getProcAddressType getProcAddress)
277 f = getProcAddress(name);
502 getProcAddress = (getProcAddressType)dlsym(dso, "eglGetProcAddress");
504 ALOGE_IF(!getProcAddress,
517 f = getProcAddress(name);
531 getProcAddress);
538 getProcAddress);
  /external/deqp/framework/opengl/
gluFboRenderContext.hpp 57 virtual glw::GenericFuncType getProcAddress (const char* name) const { return m_context->getProcAddress(name); }
gluRenderContext.hpp 223 virtual glw::GenericFuncType getProcAddress (const char* name) const;
  /external/deqp/framework/egl/wrapper/
eglwLibrary.cpp 109 ExtLoader (const eglGetProcAddressFunc getProcAddress)
110 : m_getProcAddress(getProcAddress)
136 if (m_egl.getProcAddress)
138 const ExtLoader loader(m_egl.getProcAddress);
eglwFunctions.inl 40 eglGetProcAddressFunc getProcAddress;
eglwInitCore.inl 32 dst->getProcAddress = (eglGetProcAddressFunc) loader->get("eglGetProcAddress");
eglwFuncPtrLibraryDecl.inl 40 __eglMustCastToProperFunctionPointerType getProcAddress (const char *procname) const;
eglwFuncPtrLibraryImpl.inl 177 __eglMustCastToProperFunctionPointerType FuncPtrLibrary::getProcAddress (const char *procname) const
179 return m_egl.getProcAddress(procname);
  /device/generic/goldfish-opengl/system/GLESv1/
gl.cpp 118 void * getProcAddress(const char * procname)
179 s_gl->getProcAddress = getProcAddress;
  /device/generic/goldfish-opengl/system/GLESv2/
gl2.cpp 120 void * getProcAddress(const char * procname)
180 s_gl->getProcAddress = getProcAddress;
  /external/mesa3d/src/mesa/main/
vdpau.h 38 _mesa_VDPAUInitNV(const GLvoid *vdpDevice, const GLvoid *getProcAddress);
vdpau.c 55 _mesa_VDPAUInitNV(const GLvoid *vdpDevice, const GLvoid *getProcAddress)
64 if (!getProcAddress) {
65 _mesa_error(ctx, GL_INVALID_VALUE, "getProcAddress");
75 ctx->vdpGetProcAddress = getProcAddress;
  /external/deqp/framework/egl/
egluGLFunctionLoader.cpp 43 return (glw::GenericFuncType)m_egl.getProcAddress(name);
egluGLContextFactory.cpp 105 return (glw::GenericFuncType)m_egl.getProcAddress(name);
145 virtual eglw::GenericFuncType getProcAddress (const char* name) const;
303 glw::GenericFuncType RenderContext::getProcAddress (const char* name) const
305 return (glw::GenericFuncType)m_display->getLibrary().getProcAddress(name);
  /external/mesa3d/src/glx/
glxglvnd.c 73 imports->getProcAddress = __glXGLVNDGetProcAddress;
  /external/deqp/framework/platform/win32/
tcuWGL.cpp 154 wglGetProcAddressFunc getProcAddress;
170 , getProcAddress (DE_NULL)
208 m_functions.getProcAddress = (wglGetProcAddressFunc) m_library.getFunction("wglGetProcAddress");
214 !m_functions.getProcAddress ||
244 m_functions.getPixelFormatAttribivARB = (wglGetPixelFormatAttribivARBFunc)m_functions.getProcAddress("wglGetPixelFormatAttribivARB");
245 m_functions.getPixelFormatAttribfvARB = (wglGetPixelFormatAttribfvARBFunc)m_functions.getProcAddress("wglGetPixelFormatAttribfvARB");
246 m_functions.choosePixelFormatARB = (wglChoosePixelFormatARBFunc)m_functions.getProcAddress("wglChoosePixelFormatARB");
249 m_functions.createContextAttribsARB = (wglCreateContextAttribsARBFunc)m_functions.getProcAddress("wglCreateContextAttribsARB");
250 m_functions.getExtensionsStringARB = (wglGetExtensionsStringARBFunc)m_functions.getProcAddress("wglGetExtensionsStringARB");
537 ptr = (FunctionPtr)m_core->getLibrary()->getFunctions().getProcAddress(name)
    [all...]
tcuWGLContextFactory.cpp 76 glw::GenericFuncType getProcAddress (const char* name) const;
152 glw::GenericFuncType WGLContext::getProcAddress (const char* name) const
  /external/deqp/external/openglcts/modules/common/
glcRobustnessTests.cpp 107 (PFNGLGETGRAPHICSRESETSTATUS)robustContext->getProcAddress("glGetGraphicsResetStatus");
266 PFNGLGETNUNIFORMFV pGetnUniformfv = (PFNGLGETNUNIFORMFV)renderContext.getProcAddress("glGetnUniformfv");
267 PFNGLGETNUNIFORMIV pGetnUniformiv = (PFNGLGETNUNIFORMIV)renderContext.getProcAddress("glGetnUniformiv");
268 PFNGLGETNUNIFORMUIV pGetnUniformuiv = (PFNGLGETNUNIFORMUIV)renderContext.getProcAddress("glGetnUniformuiv");
483 PFNGLREADNPIXELS pReadnPixels = (PFNGLREADNPIXELS)context->getRenderContext().getProcAddress("glReadnPixels");
  /external/deqp/modules/egl/
teglGetFrameTimestampsTests.cpp 334 m_eglGetNextFrameIdANDROID = reinterpret_cast<eglGetNextFrameIdANDROIDFunc>(egl.getProcAddress("eglGetNextFrameIdANDROID"));
335 EGLU_CHECK_MSG(egl, "getProcAddress of eglGetNextFrameIdANDROID failed.");
336 m_eglGetCompositorTimingANDROID = reinterpret_cast<eglGetCompositorTimingANDROIDFunc>(egl.getProcAddress("eglGetCompositorTimingANDROID"));
337 EGLU_CHECK_MSG(egl, "getProcAddress of eglGetCompositorTimingANDROID failed.");
338 m_eglGetCompositorTimingSupportedANDROID = reinterpret_cast<eglGetCompositorTimingSupportedANDROIDFunc>(egl.getProcAddress("eglGetCompositorTimingSupportedANDROID"));
339 EGLU_CHECK_MSG(egl, "getProcAddress of eglGetCompositorTimingSupportedANDROID failed.");
340 m_eglGetFrameTimestampsANDROID = reinterpret_cast<eglGetFrameTimestampsANDROIDFunc>(egl.getProcAddress("eglGetFrameTimestampsANDROID"));
341 EGLU_CHECK_MSG(egl, "getProcAddress of eglGetFrameTimestampsANDROID failed.");
342 m_eglGetFrameTimestampSupportedANDROID = reinterpret_cast<eglGetFrameTimestampSupportedANDROIDFunc>(egl.getProcAddress("eglGetFrameTimestampSupportedANDROID"));
343 EGLU_CHECK_MSG(egl, "getProcAddress of eglGetFrameTimestampSupportedANDROID failed.")
    [all...]

Completed in 3762 milliseconds

1 2