/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/ |
H A 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, "wglShareList in initialize() [all...] |
H A D | FunctionsWGL.h | 38 PFNWGLGETPROCADDRESSPROC getProcAddress; member in rx::FunctionsWGL
|
/third_party/skia/third_party/externals/swiftshader/src/Main/ |
H A D | libX11.cpp | 21 XOpenDisplay = (Display *(*)(char*))getProcAddress(libX11, "XOpenDisplay"); in LibX11exports() 22 XGetWindowAttributes = (Status (*)(Display*, Window, XWindowAttributes*))getProcAddress(libX11, "XGetWindowAttributes"); in LibX11exports() 23 XDefaultScreenOfDisplay = (Screen *(*)(Display*))getProcAddress(libX11, "XDefaultScreenOfDisplay"); in LibX11exports() 24 XWidthOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XWidthOfScreen"); in LibX11exports() 25 XHeightOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XHeightOfScreen"); in LibX11exports() 26 XPlanesOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XPlanesOfScreen"); in LibX11exports() 27 XDefaultGC = (GC (*)(Display*, int))getProcAddress(libX11, "XDefaultGC"); in LibX11exports() 28 XDefaultDepth = (int (*)(Display*, int))getProcAddress(libX11, "XDefaultDepth"); in LibX11exports() 29 XMatchVisualInfo = (Status (*)(Display*, int, int, int, XVisualInfo*))getProcAddress(libX11, "XMatchVisualInfo"); in LibX11exports() 30 XDefaultVisual = (Visual *(*)(Display*, int screen_number))getProcAddress(libX1 in LibX11exports() [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
H A D | GetProcAddressTests.cpp | 105 ASSERT_EQ(mProcs.getProcAddress(nullptr, "wgpuDeviceCreateBuffer"), in TEST_P() 107 ASSERT_EQ(mProcs.getProcAddress(mDevice.Get(), "wgpuDeviceCreateBuffer"), in TEST_P() 109 ASSERT_EQ(mProcs.getProcAddress(nullptr, "wgpuQueueSubmit"), in TEST_P() 111 ASSERT_EQ(mProcs.getProcAddress(mDevice.Get(), "wgpuQueueSubmit"), in TEST_P() 117 ASSERT_EQ(mProcs.getProcAddress(nullptr, nullptr), nullptr); in TEST_P() 118 ASSERT_EQ(mProcs.getProcAddress(mDevice.Get(), nullptr), nullptr); in TEST_P() 123 ASSERT_EQ(mProcs.getProcAddress(nullptr, "wgpuDeviceDoSomething"), nullptr); in TEST_P() 124 ASSERT_EQ(mProcs.getProcAddress(mDevice.Get(), "wgpuDeviceDoSomething"), nullptr); in TEST_P() 127 ASSERT_EQ(mProcs.getProcAddress(nullptr, "zzzzzzz"), nullptr); in TEST_P() 128 ASSERT_EQ(mProcs.getProcAddress(mDevic in TEST_P() [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/glesext/disjoint_timer_query/ |
H A D | esextcDisjointTimerQueryBase.cpp | 51 glGenQueriesEXT = (glGenQueriesEXTFunc)context.getRenderContext().getProcAddress("glGenQueriesEXT"); in DisjointTimerQueryBase() 52 glDeleteQueriesEXT = (glDeleteQueriesEXTFunc)context.getRenderContext().getProcAddress("glDeleteQueriesEXT"); in DisjointTimerQueryBase() 53 glIsQueryEXT = (glIsQueryEXTFunc)context.getRenderContext().getProcAddress("glIsQueryEXT"); in DisjointTimerQueryBase() 54 glBeginQueryEXT = (glBeginQueryEXTFunc)context.getRenderContext().getProcAddress("glBeginQueryEXT"); in DisjointTimerQueryBase() 55 glEndQueryEXT = (glEndQueryEXTFunc)context.getRenderContext().getProcAddress("glEndQueryEXT"); in DisjointTimerQueryBase() 56 glQueryCounterEXT = (glQueryCounterEXTFunc)context.getRenderContext().getProcAddress("glQueryCounterEXT"); in DisjointTimerQueryBase() 57 glGetQueryivEXT = (glGetQueryivEXTFunc)context.getRenderContext().getProcAddress("glGetQueryivEXT"); in DisjointTimerQueryBase() 58 glGetQueryObjectivEXT = (glGetQueryObjectivEXTFunc)context.getRenderContext().getProcAddress("glGetQueryObjectivEXT"); in DisjointTimerQueryBase() 59 glGetQueryObjectuivEXT = (glGetQueryObjectuivEXTFunc)context.getRenderContext().getProcAddress("glGetQueryObjectuivEXT"); in DisjointTimerQueryBase() 60 glGetQueryObjecti64vEXT = (glGetQueryObjecti64vEXTFunc)context.getRenderContext().getProcAddress("glGetQueryObjecti64vEX in DisjointTimerQueryBase() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/System/ |
H A 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 122 inline void *getProcAddress(void *library, const char *name) in getProcAddress() function 139 *out = reinterpret_cast<FunctionPointer>(getProcAddress(library, functionName)); in getFuncAddress()
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A 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
|
/third_party/vk-gl-cts/framework/egl/wrapper/ |
H A 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()
|
/third_party/vk-gl-cts/framework/platform/win32/ |
H A D | tcuWGL.cpp | 162 wglGetProcAddressFunc getProcAddress; member 182 , getProcAddress (DE_NULL) in Functions() 220 m_functions.getProcAddress = (wglGetProcAddressFunc) m_library.getFunction("wglGetProcAddress"); in Library() 226 !m_functions.getProcAddress || in Library() 256 m_functions.getPixelFormatAttribivARB = (wglGetPixelFormatAttribivARBFunc)m_functions.getProcAddress("wglGetPixelFormatAttribivARB"); in Library() 257 m_functions.getPixelFormatAttribfvARB = (wglGetPixelFormatAttribfvARBFunc)m_functions.getProcAddress("wglGetPixelFormatAttribfvARB"); in Library() 258 m_functions.choosePixelFormatARB = (wglChoosePixelFormatARBFunc)m_functions.getProcAddress("wglChoosePixelFormatARB"); in Library() 261 m_functions.createContextAttribsARB = (wglCreateContextAttribsARBFunc)m_functions.getProcAddress("wglCreateContextAttribsARB"); in Library() 262 m_functions.getExtensionsStringARB = (wglGetExtensionsStringARBFunc)m_functions.getProcAddress("wglGetExtensionsStringARB"); in Library() 265 m_functions.swapIntervalEXT = (wglSwapIntervalEXTFunc)m_functions.getProcAddress("wglSwapIntervalEX in Library() [all...] |
H A 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::__anon30306::WGLContext
|
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluFboRenderContext.hpp | 57 virtual glw::GenericFuncType getProcAddress (const char* name) const { return m_context->getProcAddress(name); } in getProcAddress() function in glu::FboRenderContext
|
/third_party/vk-gl-cts/framework/platform/ohos/context/ |
H A D | tcuOhosNativeContext.hpp | 61 virtual glw::GenericFuncType getProcAddress (const char* name) const { return m_egl.getProcAddress(name); } in getProcAddress() function in tcu::OHOS_ROSEN::egl::OhosRendContext
|
/third_party/glfw/src/ |
H A D | context.c | 368 window->context.getProcAddress("glGetIntegerv"); in _glfwRefreshContextAttribs() 370 window->context.getProcAddress("glGetString"); in _glfwRefreshContextAttribs() 465 window->context.getProcAddress("glGetStringi"); in _glfwRefreshContextAttribs() 572 window->context.getProcAddress("glClear"); in _glfwRefreshContextAttribs() 763 return window->context.getProcAddress(procname); in glfwGetProcAddress()
|
/third_party/skia/tools/gpu/dawn/ |
H A D | DawnTestContext.cpp | 57 static void* getProcAddress(const char* name) { in getProcAddress() function in __anon26495::ProcGetter 115 ProcGetter::getProcAddress in Create()
|
/third_party/skia/third_party/externals/angle2/util/ |
H A D | EGLWindow.h | 100 virtual angle::GenericProc getProcAddress(const char *name) = 0; 159 angle::GenericProc getProcAddress(const char *name) override;
|
H A D | EGLWindow.cpp | 143 PFNEGLGETPROCADDRESSPROC getProcAddress; in initializeDisplay() local 144 glWindowingLibrary->getAs("eglGetProcAddress", &getProcAddress); in initializeDisplay() 145 if (!getProcAddress) in initializeDisplay() 152 angle::LoadEGL(getProcAddress); in initializeDisplay() 848 angle::GenericProc EGLWindow::getProcAddress(const char *name) in getProcAddress() function in EGLWindow
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/ |
H A D | FunctionsEGLDL.h | 24 void *getProcAddress(const char *name) const override;
|
H A D | FunctionsEGLDL.cpp | 62 void *FunctionsEGLDL::getProcAddress(const char *name) const in getProcAddress() function in rx::FunctionsEGLDL
|
/third_party/skia/third_party/externals/swiftshader/src/WSI/ |
H A D | libXCB.cpp | 40 if(getProcAddress(RTLD_DEFAULT, "xcb_create_gc")) // Search the global scope for pre-loaded XCB library. in loadExports()
|
H A D | libX11.cpp | 55 if(getProcAddress(RTLD_DEFAULT, "XOpenDisplay")) // Search the global scope for pre-loaded X11 library. in loadExports()
|
/third_party/vk-gl-cts/framework/egl/ |
H A 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::__anon30228::RenderContext 307 return (glw::GenericFuncType)m_display->getLibrary().getProcAddress(name); in getProcAddress()
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglGetFrameTimestampsTests.cpp | 332 m_eglGetNextFrameIdANDROID = reinterpret_cast<eglGetNextFrameIdANDROIDFunc>(egl.getProcAddress("eglGetNextFrameIdANDROID")); in initializeExtension() 333 EGLU_CHECK_MSG(egl, "getProcAddress of eglGetNextFrameIdANDROID failed."); in initializeExtension() 334 m_eglGetCompositorTimingANDROID = reinterpret_cast<eglGetCompositorTimingANDROIDFunc>(egl.getProcAddress("eglGetCompositorTimingANDROID")); in initializeExtension() 335 EGLU_CHECK_MSG(egl, "getProcAddress of eglGetCompositorTimingANDROID failed."); in initializeExtension() 336 m_eglGetCompositorTimingSupportedANDROID = reinterpret_cast<eglGetCompositorTimingSupportedANDROIDFunc>(egl.getProcAddress("eglGetCompositorTimingSupportedANDROID")); in initializeExtension() 337 EGLU_CHECK_MSG(egl, "getProcAddress of eglGetCompositorTimingSupportedANDROID failed."); in initializeExtension() 338 m_eglGetFrameTimestampsANDROID = reinterpret_cast<eglGetFrameTimestampsANDROIDFunc>(egl.getProcAddress("eglGetFrameTimestampsANDROID")); in initializeExtension() 339 EGLU_CHECK_MSG(egl, "getProcAddress of eglGetFrameTimestampsANDROID failed."); in initializeExtension() 340 m_eglGetFrameTimestampSupportedANDROID = reinterpret_cast<eglGetFrameTimestampSupportedANDROIDFunc>(egl.getProcAddress("eglGetFrameTimestampSupportedANDROID")); in initializeExtension() 341 EGLU_CHECK_MSG(egl, "getProcAddress o in initializeExtension() [all...] |
/third_party/mesa3d/src/egl/main/ |
H A D | eglglvnd.c | 96 imports->getProcAddress = __eglGLVNDGetProcAddress; in __egl_Main()
|
/third_party/mesa3d/src/glx/ |
H A D | glxglvnd.c | 73 imports->getProcAddress = __glXGLVNDGetProcAddress; in __glx_Main()
|
/third_party/skia/third_party/externals/angle2/util/windows/ |
H A D | WGLWindow.h | 49 angle::GenericProc getProcAddress(const char *name) override;
|