Add missing SK_API to SkSwizzle.h
authortomhudson <tomhudson@google.com>
Thu, 24 Mar 2016 14:50:14 +0000 (07:50 -0700)
committerCommit bot <commit-bot@chromium.org>
Thu, 24 Mar 2016 14:50:14 +0000 (07:50 -0700)
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1828733003

Review URL: https://codereview.chromium.org/1828733003

include/core/SkSwizzle.h

index 73e59e3..253f4e3 100644 (file)
@@ -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