aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/effects/SkTableColorFilter.h
diff options
context:
space:
mode:
authorGravatar thakis@chromium.org <thakis@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-02-10 22:49:31 +0000
committerGravatar thakis@chromium.org <thakis@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-02-10 22:49:31 +0000
commit2857a784f7852c6171ee264a938be0816ba3e6db (patch)
tree248d2ba70587401785a88fbbcdc7d3d9b665b1ea /include/effects/SkTableColorFilter.h
parentce6dbb6b4ce3f36e0a2245b215dc48b68df35c41 (diff)
Remove extra SK_API
(It's already on the class, not needed on the method too.) Review URL: http://codereview.appspot.com/5649057/ Patch from Dominic Mazzoni <dmazzoni@chromium.org>! git-svn-id: http://skia.googlecode.com/svn/trunk@3169 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/effects/SkTableColorFilter.h')
-rw-r--r--include/effects/SkTableColorFilter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/effects/SkTableColorFilter.h b/include/effects/SkTableColorFilter.h
index 12ca0f3240..b442197bda 100644
--- a/include/effects/SkTableColorFilter.h
+++ b/include/effects/SkTableColorFilter.h
@@ -25,10 +25,10 @@ public:
* treated as identity, with the component left unchanged. If a table
* is not null, then its contents are copied into the filter.
*/
- SK_API static SkColorFilter* CreateARGB(const uint8_t tableA[256],
- const uint8_t tableR[256],
- const uint8_t tableG[256],
- const uint8_t tableB[256]);
+ static SkColorFilter* CreateARGB(const uint8_t tableA[256],
+ const uint8_t tableR[256],
+ const uint8_t tableG[256],
+ const uint8_t tableB[256]);
};
#endif