Home
last modified time | relevance | path

Searched refs:GrGLFuncPtr (Results 1 – 25 of 39) sorted by relevance

12

/external/skia/src/gpu/gl/win/
DGrGLMakeNativeInterface_win.cpp42 if (GrGLFuncPtr p = (GrGLFuncPtr)GetProcAddress((HMODULE)ctx, name)) { in GrGLMakeNativeInterface()
45 if (GrGLFuncPtr p = (GrGLFuncPtr)wglGetProcAddress(name)) { in GrGLMakeNativeInterface()
48 return (GrGLFuncPtr)nullptr; in GrGLMakeNativeInterface()
/external/skqp/src/gpu/gl/win/
DGrGLMakeNativeInterface_win.cpp44 GrGLFuncPtr getProc(const char name[]) const { in getProc()
45 GrGLFuncPtr proc; in getProc()
46 if ((proc = (GrGLFuncPtr) GetProcAddress(fGLLib.get(), name))) { in getProc()
49 if ((proc = (GrGLFuncPtr) wglGetProcAddress(name))) { in getProc()
59 static GrGLFuncPtr win_get_gl_proc(void* ctx, const char name[]) { in win_get_gl_proc()
/external/skqp/src/gpu/gl/mac/
DGrGLMakeNativeInterface_mac.cpp42 GrGLFuncPtr getProc(const char name[]) const { in getProc()
43 return (GrGLFuncPtr) dlsym(fLoader.handle(), name); in getProc()
50 static GrGLFuncPtr mac_get_gl_proc(void* ctx, const char name[]) { in mac_get_gl_proc()
/external/skqp/src/gpu/gl/iOS/
DGrGLMakeNativeInterface_iOS.cpp38 GrGLFuncPtr getProc(const char name[]) const { in getProc()
39 return (GrGLFuncPtr) dlsym(fLoader.handle(), name); in getProc()
46 static GrGLFuncPtr ios_get_gl_proc(void* ctx, const char name[]) { in ios_get_gl_proc()
/external/skqp/tools/gpu/gl/mac/
DCreatePlatformGLTestContext_mac.cpp34 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override;
124 GrGLFuncPtr MacGLTestContext::onPlatformGetProcAddress(const char* procName) const { in onPlatformGetProcAddress()
126 return reinterpret_cast<GrGLFuncPtr>(dlsym(handle, procName)); in onPlatformGetProcAddress()
/external/skia/src/gpu/gl/webgl/
DGrGLMakeNativeInterface_webgl.cpp16 static GrGLFuncPtr webgl_get_gl_proc(void* ctx, const char name[]) { in webgl_get_gl_proc()
18 #define M(X) if (0 == strcmp(#X, name)) { return (GrGLFuncPtr) emscripten_##X; } in webgl_get_gl_proc()
/external/skia/tools/gpu/gl/mac/
DCreatePlatformGLTestContext_mac.cpp34 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override;
147 GrGLFuncPtr MacGLTestContext::onPlatformGetProcAddress(const char* procName) const { in onPlatformGetProcAddress()
149 return reinterpret_cast<GrGLFuncPtr>(dlsym(handle, procName)); in onPlatformGetProcAddress()
/external/skqp/tools/gpu/gl/angle/
DGLTestContext_angle.cpp49 static GrGLFuncPtr angle_get_gl_proc(void* ctx, const char name[]) { in angle_get_gl_proc()
51 GrGLFuncPtr proc = (GrGLFuncPtr) GetProcedureAddress(libs->fGLLib, name); in angle_get_gl_proc()
55 proc = (GrGLFuncPtr) GetProcedureAddress(libs->fEGLLib, name); in angle_get_gl_proc()
104 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
388 GrGLFuncPtr ANGLEGLContext::onPlatformGetProcAddress(const char* name) const { in onPlatformGetProcAddress()
/external/skqp/tools/gpu/gl/iOS/
DCreatePlatformGLTestContext_iOS.mm33 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override;
113 GrGLFuncPtr IOSGLTestContext::onPlatformGetProcAddress(const char* procName) const {
115 return reinterpret_cast<GrGLFuncPtr>(dlsym(handle, procName));
/external/skia/tools/gpu/gl/win/
DCreatePlatformGLTestContext_win.cpp46 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
215 GrGLFuncPtr WinGLTestContext::onPlatformGetProcAddress(const char* name) const { in onPlatformGetProcAddress()
216 return reinterpret_cast<GrGLFuncPtr>(wglGetProcAddress(name)); in onPlatformGetProcAddress()
/external/skqp/tools/gpu/gl/win/
DCreatePlatformGLTestContext_win.cpp46 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
214 GrGLFuncPtr WinGLTestContext::onPlatformGetProcAddress(const char* name) const { in onPlatformGetProcAddress()
215 return reinterpret_cast<GrGLFuncPtr>(wglGetProcAddress(name)); in onPlatformGetProcAddress()
/external/skia/tools/gpu/gl/angle/
DGLTestContext_angle.cpp52 static GrGLFuncPtr angle_get_gl_proc(void* ctx, const char name[]) { in angle_get_gl_proc()
54 GrGLFuncPtr proc = (GrGLFuncPtr) SkGetProcedureAddress(libs->fGLLib, name); in angle_get_gl_proc()
58 proc = (GrGLFuncPtr) SkGetProcedureAddress(libs->fEGLLib, name); in angle_get_gl_proc()
107 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
477 GrGLFuncPtr ANGLEGLContext::onPlatformGetProcAddress(const char* name) const { in onPlatformGetProcAddress()
/external/skia/tools/gpu/gl/iOS/
DCreatePlatformGLTestContext_iOS.mm35 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override;
117 GrGLFuncPtr IOSGLTestContext::onPlatformGetProcAddress(const char* procName) const {
119 return reinterpret_cast<GrGLFuncPtr>(dlsym(handle, procName));
/external/skqp/src/gpu/gl/egl/
DGrGLMakeNativeInterface_egl.cpp17 static GrGLFuncPtr egl_get_gl_proc(void* ctx, const char name[]) { in egl_get_gl_proc()
21 #define M(X) if (0 == strcmp(#X, name)) { return (GrGLFuncPtr) X; } in egl_get_gl_proc()
/external/skia/src/gpu/gl/egl/
DGrGLMakeEGLInterface.cpp17 static GrGLFuncPtr egl_get_gl_proc(void* ctx, const char name[]) { in egl_get_gl_proc()
21 #define M(X) if (0 == strcmp(#X, name)) { return (GrGLFuncPtr) X; } in egl_get_gl_proc()
/external/skia/src/gpu/gl/glfw/
DGrGLMakeNativeInterface_glfw.cpp15 static GrGLFuncPtr glfw_get(void* ctx, const char name[]) { in glfw_get()
/external/skqp/src/gpu/gl/glfw/
DGrGLMakeNativeInterface_glfw.cpp15 static GrGLFuncPtr glfw_get(void* ctx, const char name[]) { in glfw_get()
/external/skia/src/gpu/gl/glx/
DGrGLMakeGLXInterface.cpp16 static GrGLFuncPtr glx_get(void* ctx, const char name[]) { in glx_get()
/external/skia/src/gpu/gl/iOS/
DGrGLMakeNativeInterface_iOS.cpp23 return (GrGLFuncPtr)dlsym(ctx ? ctx : RTLD_DEFAULT, name); }); in GrGLMakeNativeInterface()
/external/skia/src/gpu/gl/mac/
DGrGLMakeNativeInterface_mac.cpp23 return (GrGLFuncPtr)dlsym(ctx ? ctx : RTLD_DEFAULT, name); }); in GrGLMakeNativeInterface()
/external/skqp/src/gpu/gl/glx/
DGrGLMakeNativeInterface_glx.cpp17 static GrGLFuncPtr glx_get(void* ctx, const char name[]) { in glx_get()
/external/skqp/include/gpu/gl/
DGrGLAssembleInterface.h10 typedef GrGLFuncPtr (*GrGLGetProc)(void* ctx, const char name[]);
/external/skia/include/gpu/gl/
DGrGLAssembleInterface.h10 typedef GrGLFuncPtr (*GrGLGetProc)(void* ctx, const char name[]);
/external/skqp/tools/gpu/gl/null/
DNullGLTestContext.cpp29 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override { return nullptr; } in onPlatformGetProcAddress()
/external/skqp/tools/gpu/gl/command_buffer/
DGLTestContext_command_buffer.h49 GrGLFuncPtr onPlatformGetProcAddress(const char *name) const override;

12