Home
last modified time | relevance | path

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

1234

/third_party/flutter/skia/third_party/externals/angle2/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 …]
/third_party/skia/third_party/externals/angle2/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 …]
/third_party/skia/third_party/externals/swiftshader/src/Main/
DlibX11.cpp21 XOpenDisplay = (Display *(*)(char*))getProcAddress(libX11, "XOpenDisplay"); in LibX11exports()
22 …XGetWindowAttributes = (Status (*)(Display*, Window, XWindowAttributes*))getProcAddress(libX11, "X… 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, "XMat… in LibX11exports()
30 …XDefaultVisual = (Visual *(*)(Display*, int screen_number))getProcAddress(libX11, "XDefaultVisual"… in LibX11exports()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DGetProcAddressTests.cpp105 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(mDevice.Get(), "zzzzzzz"), nullptr); in TEST_P()
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/disjoint_timer_query/
DesextcDisjointTimerQueryBase.cpp51 …glGenQueriesEXT = (glGenQueriesEXTFunc)context.getRenderContext().getProcAddress("glGenQueriesE… in DisjointTimerQueryBase()
52 …glDeleteQueriesEXT = (glDeleteQueriesEXTFunc)context.getRenderContext().getProcAddress("glDelete… in DisjointTimerQueryBase()
53 glIsQueryEXT = (glIsQueryEXTFunc)context.getRenderContext().getProcAddress("glIsQueryEXT"); in DisjointTimerQueryBase()
54 …glBeginQueryEXT = (glBeginQueryEXTFunc)context.getRenderContext().getProcAddress("glBeginQueryE… in DisjointTimerQueryBase()
55 glEndQueryEXT = (glEndQueryEXTFunc)context.getRenderContext().getProcAddress("glEndQueryEXT"); in DisjointTimerQueryBase()
56 …glQueryCounterEXT = (glQueryCounterEXTFunc)context.getRenderContext().getProcAddress("glQueryCou… in DisjointTimerQueryBase()
57 …glGetQueryivEXT = (glGetQueryivEXTFunc)context.getRenderContext().getProcAddress("glGetQueryivE… in DisjointTimerQueryBase()
58 …glGetQueryObjectivEXT = (glGetQueryObjectivEXTFunc)context.getRenderContext().getProcAddress("glG… in DisjointTimerQueryBase()
59 …glGetQueryObjectuivEXT = (glGetQueryObjectuivEXTFunc)context.getRenderContext().getProcAddress("g… in DisjointTimerQueryBase()
60 …glGetQueryObjecti64vEXT = (glGetQueryObjecti64vEXTFunc)context.getRenderContext().getProcAddress(… in DisjointTimerQueryBase()
[all …]
/third_party/skia/third_party/externals/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
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/
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
/third_party/vk-gl-cts/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()
/third_party/vk-gl-cts/framework/platform/win32/
DtcuWGL.cpp162 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 …xelFormatAttribivARB = (wglGetPixelFormatAttribivARBFunc)m_functions.getProcAddress("wglGetPixelFo… in Library()
257 …xelFormatAttribfvARB = (wglGetPixelFormatAttribfvARBFunc)m_functions.getProcAddress("wglGetPixelFo… in Library()
258 …m_functions.choosePixelFormatARB = (wglChoosePixelFormatARBFunc)m_functions.getProcAddress("wglCh… in Library()
261 …m_functions.createContextAttribsARB = (wglCreateContextAttribsARBFunc)m_functions.getProcAddress(… in Library()
262 …m_functions.getExtensionsStringARB = (wglGetExtensionsStringARBFunc)m_functions.getProcAddress("w… in Library()
265 …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::__anon4911c3800111::WGLContext
/third_party/vk-gl-cts/framework/opengl/
DgluFboRenderContext.hpp57 …virtual glw::GenericFuncType getProcAddress (const char* name) const { return m_context->getPro… in getProcAddress() function in glu::FboRenderContext
/third_party/vk-gl-cts/framework/platform/ohos/context/
DtcuOhosNativeContext.hpp61 …virtual glw::GenericFuncType getProcAddress (const char* name) const { return m_egl.getProcA… in getProcAddress() function in tcu::OHOS_ROSEN::egl::OhosRendContext
/third_party/flutter/glfw/src/
Dcontext.c339 window->context.getProcAddress("glGetIntegerv"); in _glfwRefreshContextAttribs()
341 window->context.getProcAddress("glGetString"); in _glfwRefreshContextAttribs()
432 window->context.getProcAddress("glGetStringi"); in _glfwRefreshContextAttribs()
538 window->context.getProcAddress("glClear"); in _glfwRefreshContextAttribs()
718 return window->context.getProcAddress(procname); in glfwGetProcAddress()
/third_party/skia/tools/gpu/dawn/
DDawnTestContext.cpp57 static void* getProcAddress(const char* name) { in getProcAddress() function in __anon2ea21c2d0111::ProcGetter
115 ProcGetter::getProcAddress in Create()
/third_party/flutter/skia/third_party/externals/angle2/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
/third_party/skia/third_party/externals/angle2/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
/third_party/flutter/skia/third_party/externals/angle2/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()
/third_party/skia/third_party/externals/angle2/util/
DEGLWindow.h100 virtual angle::GenericProc getProcAddress(const char *name) = 0;
159 angle::GenericProc getProcAddress(const char *name) override;
DEGLWindow.cpp143 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/swiftshader/src/WSI/
DlibXCB.cpp40 …if(getProcAddress(RTLD_DEFAULT, "xcb_create_gc")) // Search the global scope for pre-loaded XCB l… in loadExports()
/third_party/flutter/skia/tools/gpu/dawn/
DDawnTestContext.cpp57 static void* getProcAddress(const char* name) { in getProcAddress() function in __anon028490220111::ProcGetter
186 ProcGetter::getProcAddress in Create()
/third_party/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);

1234