aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkSwizzle.h
diff options
context:
space:
mode:
authorGravatar tomhudson <tomhudson@google.com>2016-03-24 07:50:14 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-24 07:50:14 -0700
commitcd35baa8bf166bb07a754e958474fb1f2103439e (patch)
treedc78133e8fbd8bdef69e20cae482a6ad0a968b3d /include/core/SkSwizzle.h
parentc9ced392132711205af9011b1112cac3137daf09 (diff)
Add missing SK_API to SkSwizzle.h
Diffstat (limited to 'include/core/SkSwizzle.h')
-rw-r--r--include/core/SkSwizzle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkSwizzle.h b/include/core/SkSwizzle.h
index 73e59e386a..253f4e39a0 100644
--- a/include/core/SkSwizzle.h
+++ b/include/core/SkSwizzle.h
@@ -14,6 +14,6 @@
Swizzles byte order of |count| 32-bit pixels, swapping R and B.
(RGBA <-> BGRA)
*/
-void SkSwapRB(uint32_t* dest, const uint32_t* src, int count);
+SK_API void SkSwapRB(uint32_t* dest, const uint32_t* src, int count);
#endif