/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
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, "glDiscardFramebufferEXT") == 0) in TraceLoadProc() [all …]
|
/third_party/mesa3d/src/glx/ |
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()
|
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_native/ |
D | ProcTable.cpp | 94 WGPUProc NativeGetProcAddress(WGPUDevice, const char* procName) { 95 if (procName == nullptr) { 99 const ProcEntry* entry = std::lower_bound(&sProcMap[0], &sProcMap[sProcMapSize], procName, 105 if (entry != &sProcMap[sProcMapSize] && strcmp(entry->name, procName) == 0) { 110 if (strcmp(procName, "wgpuGetProcAddress") == 0) { 114 if (strcmp(procName, "wgpuCreateInstance") == 0) {
|
/third_party/mesa3d/src/gallium/targets/libgl-xlib/ |
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/ |
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/ |
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/ |
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 { 46 *proc = reinterpret_cast<T*>(GetProc(procName, error));
|
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/flutter/skia/third_party/externals/dawn/src/common/ |
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 { 46 *proc = reinterpret_cast<T*>(GetProc(procName, error));
|
D | DynamicLib.cpp | 80 void* DynamicLib::GetProc(const std::string& procName, std::string* error) const { in GetProc() argument 84 proc = reinterpret_cast<void*>(GetProcAddress(static_cast<HMODULE>(mHandle), procName.c_str())); in GetProc() 90 proc = reinterpret_cast<void*>(dlsym(mHandle, procName.c_str())); in GetProc()
|
/third_party/mesa3d/src/egl/main/ |
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/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/ |
D | FunctionsWGL.cpp | 21 const std::string &procName, in GetWGLProcAddress() argument 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() argument 49 GetWGLProcAddress(glModule, getProcAddressWGL, procName, &proc); in GetWGLExtensionProcAddress()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/ |
D | FunctionsWGL.cpp | 21 const std::string &procName, in GetWGLProcAddress() argument 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() argument 49 GetWGLProcAddress(glModule, getProcAddressWGL, procName, &proc); in GetWGLExtensionProcAddress()
|
/third_party/flutter/skia/tools/gpu/gl/mac/ |
D | CreatePlatformGLTestContext_mac.cpp | 124 GrGLFuncPtr MacGLTestContext::onPlatformGetProcAddress(const char* procName) const { in onPlatformGetProcAddress() 126 return reinterpret_cast<GrGLFuncPtr>(dlsym(handle, procName)); in onPlatformGetProcAddress()
|
/third_party/skia/tools/gpu/gl/mac/ |
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/openGLES/extensions/ARB/ |
D | GLX_ARB_get_proc_address.txt | 70 extern GLfunction glXGetProcAddressARB(const GLubyte *procName); 74 void (*glXGetProcAddressARB(const GLubyte *procName))(); 160 void (*glXGetProcAddressARB(const GLubyte *procName))(...) 203 void (*glXGetProcAddressARB(const ubyte *procName)(); 205 returns the address of the extension function named by procName. The
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | GLX_ARB_get_proc_address.txt | 60 extern GLfunction glXGetProcAddressARB(const GLubyte *procName); 64 void (*glXGetProcAddressARB(const GLubyte *procName))(); 150 void (*glXGetProcAddressARB(const GLubyte *procName))(...) 193 void (*glXGetProcAddressARB(const ubyte *procName)(); 195 returns the address of the extension function named by procName. The
|
/third_party/skia/tools/gpu/dawn/ |
D | DawnTestContext.cpp | 32 static void* getProcAddressMacOS(const char* procName) { in getProcAddressMacOS() argument 33 return dlsym(RTLD_DEFAULT, procName); in getProcAddressMacOS()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | VulkanFunctions.cpp | 46 #define GET_INSTANCE_PROC_BASE(name, procName) \ argument 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/ |
D | webgpu_cpp.cpp | 157 Proc GetProcAddress(Device const& device, const char* procName) { 158 return reinterpret_cast<Proc>(wgpuGetProcAddress(device.Get(), procName));
|
/third_party/flutter/skia/tools/gpu/gl/iOS/ |
D | CreatePlatformGLTestContext_iOS.mm | 113 GrGLFuncPtr IOSGLTestContext::onPlatformGetProcAddress(const char* procName) const { 115 return reinterpret_cast<GrGLFuncPtr>(dlsym(handle, procName));
|
/third_party/skia/tools/gpu/gl/iOS/ |
D | CreatePlatformGLTestContext_iOS.mm | 117 GrGLFuncPtr IOSGLTestContext::onPlatformGetProcAddress(const char* procName) const { 119 return reinterpret_cast<GrGLFuncPtr>(dlsym(handle, procName));
|
/third_party/flutter/skia/tools/gpu/dawn/ |
D | DawnTestContext.cpp | 32 static void* getProcAddressMacOS(const char* procName) { in getProcAddressMacOS() argument 33 return dlsym(RTLD_DEFAULT, procName); in getProcAddressMacOS()
|
/third_party/flutter/skia/tools/gpu/gl/glx/ |
D | CreatePlatformGLTestContext_glx.cpp | 368 GrGLFuncPtr GLXGLTestContext::onPlatformGetProcAddress(const char* procName) const { in onPlatformGetProcAddress() 369 return glXGetProcAddress(reinterpret_cast<const GLubyte*>(procName)); in onPlatformGetProcAddress()
|
/third_party/skia/tools/gpu/gl/glx/ |
D | CreatePlatformGLTestContext_glx.cpp | 374 GrGLFuncPtr GLXGLTestContext::onPlatformGetProcAddress(const char* procName) const { in onPlatformGetProcAddress() 375 return glXGetProcAddress(reinterpret_cast<const GLubyte*>(procName)); in onPlatformGetProcAddress()
|