Home
last modified time | relevance | path

Searched refs:getProcAddress (Results 1 – 25 of 50) sorted by relevance

12

/external/angle/src/libANGLE/renderer/gl/wgl/
DFunctionsWGL.cpp62 getProcAddress(nullptr), in FunctionsWGL()
106 GetWGLProcAddress(glModule, nullptr, "wglGetProcAddress", &getProcAddress); in initialize()
109 GetWGLProcAddress(glModule, getProcAddress, "wglCopyContext", &copyContext); 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 …]
DFunctionsWGL.h38 PFNWGLGETPROCADDRESSPROC getProcAddress; variable
/external/swiftshader/src/Main/
DlibX11.cpp23 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/
DSharedLibrary.hpp29 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/
DSharedLibrary.hpp29 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/
DeglwLibrary.cpp109 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()
DeglwFunctions.inl40 eglGetProcAddressFunc getProcAddress; variable
/external/deqp/framework/platform/win32/
DtcuWGL.cpp157 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 …]
DtcuWGLContextFactory.cpp76 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/
DgluFboRenderContext.hpp57 …virtual glw::GenericFuncType getProcAddress (const char* name) const { return m_context->getPro… in getProcAddress() function in glu::FboRenderContext
/external/swiftshader/src/WSI/
DlibX11.cpp26 *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()
DXcbSurfaceKHR.cpp29 *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/
DFunctionsEGLDL.h24 void *getProcAddress(const char *name) const override;
DFunctionsEGLDL.cpp62 void *FunctionsEGLDL::getProcAddress(const char *name) const in getProcAddress() function in rx::FunctionsEGLDL
DFunctionsEGL.cpp158 if (!SetPtr(MEMBER, getProcAddress(#NAME))) \ in initialize()
265 getProcAddress("eglDupNativeFenceFDANDROID")) && in initialize()
297 return mEGL.getProcAddress(function.c_str()); in loadProcAddress()
/external/angle/util/
DEGLWindow.cpp112 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/
DDawnTestContext.cpp58 static void* getProcAddress(const char* name) { in getProcAddress() function in __anon2f6000e70111::ProcGetter
187 ProcGetter::getProcAddress in Create()
/external/mesa3d/src/mesa/main/
Dvdpau.c56 _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()
Dvdpau.h38 _mesa_VDPAUInitNV(const GLvoid *vdpDevice, const GLvoid *getProcAddress);
/external/deqp/framework/egl/
DegluGLContextFactory.cpp106 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()
DegluGLFunctionLoader.cpp43 return (glw::GenericFuncType)m_egl.getProcAddress(name); in get()
/external/mesa3d/src/egl/main/
Deglglvnd.c69 imports->getProcAddress = __eglGLVNDGetProcAddress; in __egl_Main()
/external/deqp/modules/egl/
DteglGetFrameTimestampsTests.cpp335 …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/
Dglxglvnd.c73 imports->getProcAddress = __glXGLVNDGetProcAddress; in __glx_Main()
/external/angle/src/tests/test_utils/
DANGLETest.cpp278 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()

12