Chromium Code Reviews| Index: include/gpu/gl/GrGLInterface.h |
| diff --git a/include/gpu/gl/GrGLInterface.h b/include/gpu/gl/GrGLInterface.h |
| index e20f808dd89cfec1c6712524e6a29446f2a8ca37..ad5bf7e231bc7f601130c7a11a5e845cf308bf3d 100644 |
| --- a/include/gpu/gl/GrGLInterface.h |
| +++ b/include/gpu/gl/GrGLInterface.h |
| @@ -41,13 +41,13 @@ 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(); |
|
mtklein
2015/09/17 13:58:22
Uh, either these all should be SK_API or none shou
hal.canary
2015/09/17 14:19:25
I'm pretty sure they should all be SK_API, since y
|
| #if SK_MESA |
| /** |
| * Creates a GrGLInterface for an OSMesa context. |
| */ |
| -const GrGLInterface* GrGLCreateMesaInterface(); |
| +SK_API const GrGLInterface* GrGLCreateMesaInterface(); |
| #endif |
| #if SK_ANGLE |