diff options
author | ctguil@chromium.org <ctguil@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-05-20 22:16:08 +0000 |
---|---|---|
committer | ctguil@chromium.org <ctguil@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-05-20 22:16:08 +0000 |
commit | c7d9f9d8ae3283accf17e77e70fc64cfbfd8121a (patch) | |
tree | 74183504251b623dd1d093751a6d352bdfe617a9 | |
parent | 1a39493b328d945a000a0690659beb18aa932d3d (diff) |
Expose SkComposeShader as SK_API.
This is used by the ChromeOS build of Chrome.
Review URL: http://codereview.appspot.com/4548054
git-svn-id: http://skia.googlecode.com/svn/trunk@1396 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | include/core/SkComposeShader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkComposeShader.h b/include/core/SkComposeShader.h index 0b198f61da..ea37549652 100644 --- a/include/core/SkComposeShader.h +++ b/include/core/SkComposeShader.h @@ -27,7 +27,7 @@ class SkXfermode; This subclass of shader returns the coposition of two other shaders, combined by a xfermode. */ -class SkComposeShader : public SkShader { +class SK_API SkComposeShader : public SkShader { public: /** Create a new compose shader, given shaders A, B, and a combining xfermode mode. When the xfermode is called, it will be given the result from shader A as its |