/external/angle/src/libANGLE/renderer/gl/wgl/ |
D | FunctionsWGL.cpp | 62 getProcAddress(nullptr), in FunctionsWGL() 106 GetWGLProcAddress(glModule, nullptr, "wglGetProcAddress", &getProcAddress); in initialize() 109 GetWGLProcAddress(glModule, getProcAddress, "wglCopyContext", ©Context); in initialize() 110 GetWGLProcAddress(glModule, getProcAddress, "wglCreateContext", &createContext); in initialize() 111 GetWGLProcAddress(glModule, getProcAddress, "wglCreateLayerContext", &createLayerContext); in initialize() 112 GetWGLProcAddress(glModule, getProcAddress, "wglDeleteContext", &deleteContext); in initialize() 113 GetWGLProcAddress(glModule, getProcAddress, "wglGetCurrentContext", &getCurrentContext); in initialize() 114 GetWGLProcAddress(glModule, getProcAddress, "wglGetCurrentDC", &getCurrentDC); in initialize() 115 GetWGLProcAddress(glModule, getProcAddress, "wglMakeCurrent", &makeCurrent); in initialize() 116 GetWGLProcAddress(glModule, getProcAddress, "wglShareLists", &shareLists); in initialize() [all …]
|
D | FunctionsWGL.h | 38 PFNWGLGETPROCADDRESSPROC getProcAddress; variable
|
/external/swiftshader/src/Main/ |
D | libX11.cpp | 23 XOpenDisplay = (Display *(*)(char*))getProcAddress(libX11, "XOpenDisplay"); in LibX11exports() 24 …XGetWindowAttributes = (Status (*)(Display*, Window, XWindowAttributes*))getProcAddress(libX11, "X… in LibX11exports() 25 XDefaultScreenOfDisplay = (Screen *(*)(Display*))getProcAddress(libX11, "XDefaultScreenOfDisplay"); in LibX11exports() 26 XWidthOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XWidthOfScreen"); in LibX11exports() 27 XHeightOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XHeightOfScreen"); in LibX11exports() 28 XPlanesOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XPlanesOfScreen"); in LibX11exports() 29 XDefaultGC = (GC (*)(Display*, int))getProcAddress(libX11, "XDefaultGC"); in LibX11exports() 30 XDefaultDepth = (int (*)(Display*, int))getProcAddress(libX11, "XDefaultDepth"); in LibX11exports() 31 …XMatchVisualInfo = (Status (*)(Display*, int, int, int, XVisualInfo*))getProcAddress(libX11, "XMat… in LibX11exports() 32 …XDefaultVisual = (Visual *(*)(Display*, int screen_number))getProcAddress(libX11, "XDefaultVisual"… in LibX11exports() [all …]
|
/external/swiftshader/src/Common/ |
D | SharedLibrary.hpp | 29 void *getProcAddress(void *library, const char *name); 42 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol)) in loadLibrary() 58 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol)) in loadLibrary() 88 inline void *getProcAddress(void *library, const char *name) in getProcAddress() function 123 inline void *getProcAddress(void *library, const char *name) in getProcAddress() function
|
/external/swiftshader/src/System/ |
D | SharedLibrary.hpp | 29 void *getProcAddress(void *library, const char *name); 41 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol)) in loadLibrary() 57 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol)) in loadLibrary() 87 inline void *getProcAddress(void *library, const char *name) in getProcAddress() function 141 inline void *getProcAddress(void *library, const char *name) in getProcAddress() function
|
/external/deqp/framework/egl/wrapper/ |
D | eglwLibrary.cpp | 109 ExtLoader (const eglGetProcAddressFunc getProcAddress) in ExtLoader() argument 110 : m_getProcAddress(getProcAddress) in ExtLoader() 136 if (m_egl.getProcAddress) in DefaultLibrary() 138 const ExtLoader loader(m_egl.getProcAddress); in DefaultLibrary()
|
D | eglwFunctions.inl | 40 eglGetProcAddressFunc getProcAddress; variable
|
/external/deqp/framework/platform/win32/ |
D | tcuWGL.cpp | 157 wglGetProcAddressFunc getProcAddress; member 177 , getProcAddress (DE_NULL) in Functions() 215 m_functions.getProcAddress = (wglGetProcAddressFunc) m_library.getFunction("wglGetProcAddress"); in Library() 221 !m_functions.getProcAddress || in Library() 251 …xelFormatAttribivARB = (wglGetPixelFormatAttribivARBFunc)m_functions.getProcAddress("wglGetPixelFo… in Library() 252 …xelFormatAttribfvARB = (wglGetPixelFormatAttribfvARBFunc)m_functions.getProcAddress("wglGetPixelFo… in Library() 253 …m_functions.choosePixelFormatARB = (wglChoosePixelFormatARBFunc)m_functions.getProcAddress("wglCh… in Library() 256 …m_functions.createContextAttribsARB = (wglCreateContextAttribsARBFunc)m_functions.getProcAddress(… in Library() 257 …m_functions.getExtensionsStringARB = (wglGetExtensionsStringARBFunc)m_functions.getProcAddress("w… in Library() 260 …m_functions.swapIntervalEXT = (wglSwapIntervalEXTFunc)m_functions.getProcAddress("wglSwapInterv… in Library() [all …]
|
D | tcuWGLContextFactory.cpp | 76 glw::GenericFuncType getProcAddress (const char* name) const; 156 glw::GenericFuncType WGLContext::getProcAddress (const char* name) const in getProcAddress() function in tcu::wgl::__anon11ca9f8c0111::WGLContext
|
/external/deqp/framework/opengl/ |
D | gluFboRenderContext.hpp | 57 …virtual glw::GenericFuncType getProcAddress (const char* name) const { return m_context->getPro… in getProcAddress() function in glu::FboRenderContext
|
/external/swiftshader/src/WSI/ |
D | libX11.cpp | 26 *out = reinterpret_cast<FPTR>(getProcAddress(lib, name)); in getFuncAddress() 70 …if(getProcAddress(RTLD_DEFAULT, "XOpenDisplay")) // Search the global scope for pre-loaded X11 li… in loadExports()
|
D | XcbSurfaceKHR.cpp | 29 *out = reinterpret_cast<FPTR>(getProcAddress(lib, name)); in getFuncAddress() 71 if(getProcAddress(RTLD_DEFAULT, "xcb_create_gc")) in loadExports()
|
/external/angle/src/libANGLE/renderer/gl/egl/ |
D | FunctionsEGLDL.h | 24 void *getProcAddress(const char *name) const override;
|
D | FunctionsEGLDL.cpp | 62 void *FunctionsEGLDL::getProcAddress(const char *name) const in getProcAddress() function in rx::FunctionsEGLDL
|
D | FunctionsEGL.cpp | 158 if (!SetPtr(MEMBER, getProcAddress(#NAME))) \ in initialize() 265 getProcAddress("eglDupNativeFenceFDANDROID")) && in initialize() 297 return mEGL.getProcAddress(function.c_str()); in loadProcAddress()
|
/external/angle/util/ |
D | EGLWindow.cpp | 112 PFNEGLGETPROCADDRESSPROC getProcAddress; in initializeDisplay() local 113 glWindowingLibrary->getAs("eglGetProcAddress", &getProcAddress); in initializeDisplay() 114 if (!getProcAddress) in initializeDisplay() 120 angle::LoadEGL(getProcAddress); in initializeDisplay()
|
/external/skia/tools/gpu/dawn/ |
D | DawnTestContext.cpp | 58 static void* getProcAddress(const char* name) { in getProcAddress() function in __anon2f6000e70111::ProcGetter 187 ProcGetter::getProcAddress in Create()
|
/external/mesa3d/src/mesa/main/ |
D | vdpau.c | 56 _mesa_VDPAUInitNV(const GLvoid *vdpDevice, const GLvoid *getProcAddress) in _mesa_VDPAUInitNV() argument 65 if (!getProcAddress) { in _mesa_VDPAUInitNV() 76 ctx->vdpGetProcAddress = getProcAddress; in _mesa_VDPAUInitNV()
|
D | vdpau.h | 38 _mesa_VDPAUInitNV(const GLvoid *vdpDevice, const GLvoid *getProcAddress);
|
/external/deqp/framework/egl/ |
D | egluGLContextFactory.cpp | 106 return (glw::GenericFuncType)m_egl.getProcAddress(name); in get() 146 virtual eglw::GenericFuncType getProcAddress (const char* name) const; 305 glw::GenericFuncType RenderContext::getProcAddress (const char* name) const in getProcAddress() function in eglu::__anon2acde1870111::RenderContext 307 return (glw::GenericFuncType)m_display->getLibrary().getProcAddress(name); in getProcAddress()
|
D | egluGLFunctionLoader.cpp | 43 return (glw::GenericFuncType)m_egl.getProcAddress(name); in get()
|
/external/mesa3d/src/egl/main/ |
D | eglglvnd.c | 69 imports->getProcAddress = __eglGLVNDGetProcAddress; in __egl_Main()
|
/external/deqp/modules/egl/ |
D | teglGetFrameTimestampsTests.cpp | 335 …m_eglGetNextFrameIdANDROID = reinterpret_cast<eglGetNextFrameIdANDROIDFunc>(egl.getProcAddress("eg… in initializeExtension() 337 …ingANDROID = reinterpret_cast<eglGetCompositorTimingANDROIDFunc>(egl.getProcAddress("eglGetComposi… in initializeExtension() 339 …D = reinterpret_cast<eglGetCompositorTimingSupportedANDROIDFunc>(egl.getProcAddress("eglGetComposi… in initializeExtension() 341 …ampsANDROID = reinterpret_cast<eglGetFrameTimestampsANDROIDFunc>(egl.getProcAddress("eglGetFrameTi… in initializeExtension() 343 …OID = reinterpret_cast<eglGetFrameTimestampSupportedANDROIDFunc>(egl.getProcAddress("eglGetFrameTi… in initializeExtension()
|
/external/mesa3d/src/glx/ |
D | glxglvnd.c | 73 imports->getProcAddress = __glXGLVNDGetProcAddress; in __glx_Main()
|
/external/angle/src/tests/test_utils/ |
D | ANGLETest.cpp | 278 PFNEGLGETPROCADDRESSPROC getProcAddress; in LoadEntryPointsWithUtilLoader() local 279 ANGLETestEnvironment::GetEGLLibrary()->getAs("eglGetProcAddress", &getProcAddress); in LoadEntryPointsWithUtilLoader() 280 ASSERT_NE(nullptr, getProcAddress); in LoadEntryPointsWithUtilLoader() 282 LoadEGL(getProcAddress); in LoadEntryPointsWithUtilLoader() 283 LoadGLES(getProcAddress); in LoadEntryPointsWithUtilLoader()
|