aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-09-21 08:22:19 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-09-21 08:22:19 -0700
commit0fc1dbe59271d507e1435a5d06bbfc2ec5bb4816 (patch)
tree0c5e24faf14bef716100f580a7be5981ca677383 /include/gpu
parent08d7747ffeb7ee31d0f7b971e729b7e6b1544c59 (diff)
SK_API for include/gpu/gl/GrGLInterface.h
Diffstat (limited to 'include/gpu')
-rw-r--r--include/gpu/gl/GrGLInterface.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/gpu/gl/GrGLInterface.h b/include/gpu/gl/GrGLInterface.h
index e20f808dd8..bdbedd969b 100644
--- a/include/gpu/gl/GrGLInterface.h
+++ b/include/gpu/gl/GrGLInterface.h
@@ -41,27 +41,27 @@ const GrGLInterface* GrGLDefaultInterface();
* GLX on linux, AGL on Mac). The interface is only valid for the GL context
* that is current when the interface is created.
*/
-const GrGLInterface* GrGLCreateNativeInterface();
+SK_API const GrGLInterface* GrGLCreateNativeInterface();
#if SK_MESA
/**
* Creates a GrGLInterface for an OSMesa context.
*/
-const GrGLInterface* GrGLCreateMesaInterface();
+SK_API const GrGLInterface* GrGLCreateMesaInterface();
#endif
#if SK_ANGLE
/**
* Creates a GrGLInterface for an ANGLE context.
*/
-const GrGLInterface* GrGLCreateANGLEInterface();
+SK_API const GrGLInterface* GrGLCreateANGLEInterface();
#endif
#if SK_COMMAND_BUFFER
/**
* Creates a GrGLInterface for a Command Buffer context.
*/
-const GrGLInterface* GrGLCreateCommandBufferInterface();
+SK_API const GrGLInterface* GrGLCreateCommandBufferInterface();
#endif
/**