Searched refs:GrGLFuncPtr (Results 1 - 21 of 21) sorted by relevance

/external/skia/src/gpu/gl/android/
H A DGrGLCreateNativeInterface_android.cpp17 static GrGLFuncPtr android_get_gl_proc(void* ctx, const char name[]) {
24 return (GrGLFuncPtr) glActiveTexture;
26 return (GrGLFuncPtr) glAttachShader;
28 return (GrGLFuncPtr) glBindAttribLocation;
30 return (GrGLFuncPtr) glBindBuffer;
32 return (GrGLFuncPtr) glBindTexture;
34 return (GrGLFuncPtr) glBlendColor;
36 return (GrGLFuncPtr) glBlendEquation;
38 return (GrGLFuncPtr) glBlendFunc;
40 return (GrGLFuncPtr) glBufferDat
[all...]
/external/skia/src/gpu/gl/egl/
H A DGrGLCreateNativeInterface_egl.cpp14 static GrGLFuncPtr egl_get_gl_proc(void* ctx, const char name[]) {
16 GrGLFuncPtr ptr = eglGetProcAddress(name);
19 return (GrGLFuncPtr)eglQueryString;
21 return (GrGLFuncPtr)eglGetCurrentDisplay;
/external/skia/src/gpu/gl/iOS/
H A DGrGLCreateNativeInterface_iOS.cpp38 GrGLFuncPtr getProc(const char name[]) const {
39 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
46 static GrGLFuncPtr ios_get_gl_proc(void* ctx, const char name[]) {
/external/skia/src/gpu/gl/mac/
H A DGrGLCreateNativeInterface_mac.cpp42 GrGLFuncPtr getProc(const char name[]) const {
43 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
50 static GrGLFuncPtr mac_get_gl_proc(void* ctx, const char name[]) {
/external/skia/src/gpu/gl/win/
H A DGrGLCreateNativeInterface_win.cpp38 GrGLFuncPtr getProc(const char name[]) const {
39 GrGLFuncPtr proc;
40 if ((proc = (GrGLFuncPtr) GetProcAddress(fGLLib.get(), name))) {
43 if ((proc = (GrGLFuncPtr) wglGetProcAddress(name))) {
53 static GrGLFuncPtr win_get_gl_proc(void* ctx, const char name[]) {
/external/skia/include/gpu/gl/
H A DGrGLAssembleInterface.h10 typedef GrGLFuncPtr (*GrGLGetProc)(void* ctx, const char name[]);
H A DGrGLInterface.h33 typedef void(*GrGLFuncPtr)(); typedef
/external/skia/src/gpu/gl/glfw/
H A DGrGLCreateNativeInterface_glfw.cpp15 static GrGLFuncPtr glfw_get(void* ctx, const char name[]) {
/external/skia/src/gpu/gl/glx/
H A DGrGLCreateNativeInterface_glx.cpp15 static GrGLFuncPtr glx_get(void* ctx, const char name[]) {
/external/skia/tools/gpu/gl/null/
H A DNullGLTestContext.cpp26 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override { return nullptr; }
/external/skia/tools/gpu/gl/mac/
H A DCreatePlatformGLTestContext_mac.cpp27 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override;
105 GrGLFuncPtr MacGLTestContext::onPlatformGetProcAddress(const char* procName) const {
106 return reinterpret_cast<GrGLFuncPtr>(dlsym(fGLLibrary, procName));
/external/skia/tools/gpu/gl/mesa/
H A DGLTestContext_mesa.cpp20 static GrGLFuncPtr osmesa_get(void* ctx, const char name[]) {
50 GrGLFuncPtr onPlatformGetProcAddress(const char *) const override;
140 GrGLFuncPtr MesaGLContext::onPlatformGetProcAddress(const char *procName) const {
/external/skia/tools/gpu/gl/command_buffer/
H A DGLTestContext_command_buffer.h47 GrGLFuncPtr onPlatformGetProcAddress(const char *name) const override;
H A DGLTestContext_command_buffer.cpp115 static GrGLFuncPtr command_buffer_get_gl_proc(void* ctx, const char name[]) {
273 GrGLFuncPtr CommandBufferGLTestContext::onPlatformGetProcAddress(const char *name) const {
/external/skia/tools/gpu/gl/angle/
H A DGLTestContext_angle.cpp38 static GrGLFuncPtr angle_get_gl_proc(void* ctx, const char name[]) {
40 GrGLFuncPtr proc = (GrGLFuncPtr) GetProcedureAddress(libs->fGLLib, name);
44 proc = (GrGLFuncPtr) GetProcedureAddress(libs->fEGLLib, name);
92 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
261 GrGLFuncPtr ANGLEGLContext::onPlatformGetProcAddress(const char* name) const {
/external/skia/tools/gpu/gl/win/
H A DCreatePlatformGLTestContext_win.cpp29 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
188 GrGLFuncPtr WinGLTestContext::onPlatformGetProcAddress(const char* name) const {
189 return reinterpret_cast<GrGLFuncPtr>(wglGetProcAddress(name));
/external/skia/tools/gpu/gl/
H A DGLTestContext.h88 virtual GrGLFuncPtr onPlatformGetProcAddress(const char *) const = 0;
/external/skia/tools/gpu/gl/egl/
H A DCreatePlatformGLTestContext_egl.cpp54 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override;
283 GrGLFuncPtr EGLGLTestContext::onPlatformGetProcAddress(const char* procName) const {
/external/skia/tools/gpu/gl/glx/
H A DCreatePlatformGLTestContext_glx.cpp66 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override;
341 GrGLFuncPtr GLXGLTestContext::onPlatformGetProcAddress(const char* procName) const {
/external/skia/src/views/win/
H A DSkOSWindow_win.cpp433 static GrGLFuncPtr angle_get_gl_proc(void* ctx, const char name[]) {
435 GrGLFuncPtr proc = (GrGLFuncPtr) GetProcAddress(context.fGL, name);
439 proc = (GrGLFuncPtr) GetProcAddress(context.fEGL, name);
/external/skia/tools/gpu/gl/debug/
H A DDebugGLTestContext.cpp1206 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override { return nullptr; }

Completed in 227 milliseconds