/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
H A D | TracePerfTest.cpp | 487 angle::GenericProc KHRONOS_APIENTRY TraceLoadProc(const char *procName) in TraceLoadProc() argument 490 if (strcmp(procName, "eglCreateContext") == 0) in TraceLoadProc() 494 if (strcmp(procName, "eglMakeCurrent") == 0) in TraceLoadProc() 498 if (strcmp(procName, "eglGetCurrentContext") == 0) in TraceLoadProc() 504 if (strcmp(procName, "glBindFramebuffer") == 0) in TraceLoadProc() 508 if (strcmp(procName, "glInvalidateFramebuffer") == 0) in TraceLoadProc() 512 if (strcmp(procName, "glInvalidateSubFramebuffer") == 0) in TraceLoadProc() 516 if (strcmp(procName, "glDrawBuffers") == 0) in TraceLoadProc() 520 if (strcmp(procName, "glReadBuffer") == 0) in TraceLoadProc() 524 if (strcmp(procName, "glDiscardFramebufferEX in TraceLoadProc() [all...] |
/third_party/mesa3d/src/glx/ |
H A D | glxglvnd.c | 15 static void *__glXGLVNDGetProcAddress(const GLubyte *procName) in __glXGLVNDGetProcAddress() argument 17 return glXGetProcAddressARB(procName); in __glXGLVNDGetProcAddress() 40 static void *__glXGLVNDGetDispatchAddress(const GLubyte *procName) in __glXGLVNDGetDispatchAddress() argument 42 unsigned internalIndex = FindGLXFunction(procName); in __glXGLVNDGetDispatchAddress() 47 static void __glXGLVNDSetDispatchIndex(const GLubyte *procName, int index) in __glXGLVNDSetDispatchIndex() argument 49 unsigned internalIndex = FindGLXFunction(procName); in __glXGLVNDSetDispatchIndex()
|
H A D | glxcmds.c | 2687 * \param procName Name of a GL or GLX function. 2692 _GLX_PUBLIC void (*glXGetProcAddressARB(const GLubyte * procName)) (void) in glXGetProcAddressARB() argument 2704 f = (gl_function) get_glx_proc_address((const char *) procName); in glXGetProcAddressARB() 2705 if ((f == NULL) && (procName[0] == 'g') && (procName[1] == 'l') in glXGetProcAddressARB() 2706 && (procName[2] != 'X')) { in glXGetProcAddressARB() 2708 f = (gl_function) __indirect_get_proc_address((const char *) procName); in glXGetProcAddressARB() 2711 f = (gl_function) _glapi_get_proc_address((const char *) procName); in glXGetProcAddressARB() 2714 f = applegl_get_proc_address((const char *) procName); in glXGetProcAddressARB() 2724 * \param procName Nam [all...] |
/third_party/mesa3d/src/gallium/targets/libgl-xlib/ |
H A D | xlib.c | 101 extern void (*linker_foo(const unsigned char *procName))(); 102 extern void (*glXGetProcAddress(const unsigned char *procName))(); 104 extern void (*linker_foo(const unsigned char *procName))() in linker_foo() argument 106 return glXGetProcAddress(procName); in linker_foo()
|
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/client/ |
H A D | ApiProcs.cpp | 126 WGPUProc ClientGetProcAddress(WGPUDevice, const char* procName) { 127 if (procName == nullptr) { 131 const ProcEntry* entry = std::lower_bound(&sProcMap[0], &sProcMap[sProcMapSize], procName, 137 if (entry != &sProcMap[sProcMapSize] && strcmp(entry->name, procName) == 0) { 142 if (strcmp(procName, "wgpuGetProcAddress") == 0) { 146 if (strcmp(procName, "wgpuCreateInstance") == 0) {
|
/third_party/mesa3d/src/gallium/frontends/glx/xlib/ |
H A D | glx_getproc.c | 193 glXGetProcAddressARB(const GLubyte *procName) in glXGetProcAddressARB() argument 197 f = _glxapi_get_proc_address((const char *) procName); in glXGetProcAddressARB() 202 f = (__GLXextFuncPtr) _glapi_get_proc_address((const char *) procName); in glXGetProcAddressARB() 209 void (*glXGetProcAddress(const GLubyte *procName))() in glXGetProcAddress() argument 211 return glXGetProcAddressARB(procName); in glXGetProcAddress()
|
/third_party/skia/third_party/externals/dawn/src/common/ |
H A D | DynamicLib.h | 39 void* GetProc(const std::string& procName, std::string* error = nullptr) const; 42 bool GetProc(T** proc, const std::string& procName, std::string* error = nullptr) const { in GetProc() argument 46 *proc = reinterpret_cast<T*>(GetProc(procName, error)); in GetProc()
|
H A D | DynamicLib.cpp | 86 void* DynamicLib::GetProc(const std::string& procName, std::string* error) const { in GetProc() argument 90 proc = reinterpret_cast<void*>(GetProcAddress(static_cast<HMODULE>(mHandle), procName.c_str())); in GetProc() 96 proc = reinterpret_cast<void*>(dlsym(mHandle, procName.c_str())); in GetProc()
|
/third_party/mesa3d/src/egl/main/ |
H A D | eglglvnd.c | 74 __eglGLVNDGetProcAddress(const char *procName) in __eglGLVNDGetProcAddress() argument 76 if (strcmp(procName, "eglQueryString") == 0) in __eglGLVNDGetProcAddress() 79 return (void *) eglGetProcAddress(procName); in __eglGLVNDGetProcAddress()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/ |
H A D | FunctionsWGL.cpp | 21 const std::string &procName, in GetWGLProcAddress() 27 proc = reinterpret_cast<T>(getProcAddressWGL(procName.c_str())); in GetWGLProcAddress() 32 proc = reinterpret_cast<T>(GetProcAddress(glModule, procName.c_str())); in GetWGLProcAddress() 43 const std::string &procName, in GetWGLExtensionProcAddress() 49 GetWGLProcAddress(glModule, getProcAddressWGL, procName, &proc); in GetWGLExtensionProcAddress() 19 GetWGLProcAddress(HMODULE glModule, PFNWGLGETPROCADDRESSPROC getProcAddressWGL, const std::string &procName, T *outProcAddress) GetWGLProcAddress() argument 39 GetWGLExtensionProcAddress(HMODULE glModule, PFNWGLGETPROCADDRESSPROC getProcAddressWGL, const std::vector<std::string> &extensions, const std::string &extensionName, const std::string &procName, T *outProcAddress) GetWGLExtensionProcAddress() argument
|
/third_party/lzma/CPP/Windows/ |
H A D | DLL.cpp | 120 void *GetProcAddress(HMODULE module, LPCSTR procName)
in GetProcAddress() argument 124 ptr = dlsym(module, procName);
in GetProcAddress() 169 void * CLibrary::GetProc(LPCSTR procName) const
171 // return My_GetProcAddress(_module, procName);
172 return local_GetProcAddress(_module, procName);
|
H A D | DLL.h | 12 void *GetProcAddress(HMODULE module, LPCSTR procName);
22 #define My_GetProcAddress(module, procName) (void *)::GetProcAddressA(module, procName)
24 #define My_GetProcAddress(module, procName) (void *)::GetProcAddress(module, procName)
73 // void *GetProc(LPCSTR procName) const { return My_GetProcAddress(_module, procName); }
92 // void *GetProc(LPCSTR procName) const; // { return My_GetProcAddress(_module, procName); }
|
/third_party/skia/tools/gpu/dawn/ |
H A D | DawnTestContext.cpp | 32 static void* getProcAddressMacOS(const char* procName) { in getProcAddressMacOS() argument 33 return dlsym(RTLD_DEFAULT, procName); in getProcAddressMacOS()
|
/third_party/skia/tools/gpu/gl/mac/ |
H A D | CreatePlatformGLTestContext_mac.cpp | 147 GrGLFuncPtr MacGLTestContext::onPlatformGetProcAddress(const char* procName) const { in onPlatformGetProcAddress() 149 return reinterpret_cast<GrGLFuncPtr>(dlsym(handle, procName)); in onPlatformGetProcAddress()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
H A D | VulkanFunctions.cpp | 46 #define GET_INSTANCE_PROC_BASE(name, procName) \ 48 name = reinterpret_cast<decltype(name)>(GetInstanceProcAddr(instance, "vk" #procName)); \ 50 return DAWN_INTERNAL_ERROR(std::string("Couldn't get proc vk") + #procName); \
|
/third_party/skia/third_party/externals/dawn/generator/templates/ |
H A D | webgpu_cpp.cpp | 157 Proc GetProcAddress(Device const& device, const char* procName) { 158 return reinterpret_cast<Proc>(wgpuGetProcAddress(device.Get(), procName));
|
/third_party/skia/tools/gpu/gl/egl/ |
H A D | CreatePlatformGLTestContext_egl.cpp | 314 GrGLFuncPtr EGLGLTestContext::onPlatformGetProcAddress(const char* procName) const { in onPlatformGetProcAddress() 315 return eglGetProcAddress(procName); in onPlatformGetProcAddress()
|
/third_party/skia/tools/gpu/gl/glx/ |
H A D | CreatePlatformGLTestContext_glx.cpp | 374 GrGLFuncPtr GLXGLTestContext::onPlatformGetProcAddress(const char* procName) const { in onPlatformGetProcAddress() 375 return glXGetProcAddress(reinterpret_cast<const GLubyte*>(procName)); in onPlatformGetProcAddress()
|
/third_party/mesa3d/include/HaikuGL/ |
H A D | GLView.h | 56 void* GetGLProcAddress(const char* procName);
|
/third_party/mesa3d/src/hgl/ |
H A D | GLView.cpp | 120 BGLView::GetGLProcAddress(const char* procName) in GetGLProcAddress() argument 122 return (void*)_glapi_get_proc_address(procName); in GetGLProcAddress()
|
/third_party/mesa3d/include/GL/ |
H A D | glxext.h | 153 typedef __GLXextFuncPtr ( *PFNGLXGETPROCADDRESSPROC) (const GLubyte *procName); 155 __GLXextFuncPtr glXGetProcAddress (const GLubyte *procName); 212 typedef __GLXextFuncPtr ( *PFNGLXGETPROCADDRESSARBPROC) (const GLubyte *procName); 214 __GLXextFuncPtr glXGetProcAddressARB (const GLubyte *procName);
|
/third_party/openGLES/api/GL/ |
H A D | glxext.h | 134 typedef __GLXextFuncPtr ( *PFNGLXGETPROCADDRESSPROC) (const GLubyte *procName); 136 __GLXextFuncPtr glXGetProcAddress (const GLubyte *procName); 193 typedef __GLXextFuncPtr ( *PFNGLXGETPROCADDRESSARBPROC) (const GLubyte *procName); 195 __GLXextFuncPtr glXGetProcAddressARB (const GLubyte *procName);
|
/third_party/skia/third_party/externals/swiftshader/include/GL/ |
H A D | glxext.h | 153 typedef __GLXextFuncPtr ( *PFNGLXGETPROCADDRESSPROC) (const GLubyte *procName); 155 __GLXextFuncPtr glXGetProcAddress (const GLubyte *procName); 212 typedef __GLXextFuncPtr ( *PFNGLXGETPROCADDRESSARBPROC) (const GLubyte *procName); 214 __GLXextFuncPtr glXGetProcAddressARB (const GLubyte *procName);
|
/third_party/skia/third_party/externals/opengl-registry/api/GL/ |
H A D | glxext.h | 153 typedef __GLXextFuncPtr ( *PFNGLXGETPROCADDRESSPROC) (const GLubyte *procName); 155 __GLXextFuncPtr glXGetProcAddress (const GLubyte *procName); 212 typedef __GLXextFuncPtr ( *PFNGLXGETPROCADDRESSARBPROC) (const GLubyte *procName); 214 __GLXextFuncPtr glXGetProcAddressARB (const GLubyte *procName);
|
/third_party/skia/modules/canvaskit/ |
H A D | gm_bindings.cpp | 333 GrGLFuncPtr onPlatformGetProcAddress(const char* procName) const override {
|