aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrConfig.h
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-20 12:23:06 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-20 12:23:06 +0000
commitd28063e4916b489f572eb8358efcb7305f88c2fd (patch)
tree4f9b61988b56e6920d4df1e6149b187455f85bf5 /include/gpu/GrConfig.h
parenta61ba109bf1a60c6de8f9ebea043e782497b88cc (diff)
Replace uses of GR_API by SK_API.
R=bsalomon@google.com, robertphillips@google.com Author: tfarina@chromium.org Review URL: https://chromiumcodereview.appspot.com/22881005 git-svn-id: http://skia.googlecode.com/svn/trunk@10808 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/gpu/GrConfig.h')
-rw-r--r--include/gpu/GrConfig.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/gpu/GrConfig.h b/include/gpu/GrConfig.h
index df53fa2ceb..d47ccb3fe8 100644
--- a/include/gpu/GrConfig.h
+++ b/include/gpu/GrConfig.h
@@ -157,36 +157,6 @@ typedef unsigned __int64 uint64_t;
// postconfig section:
//
-// GR_IMPLEMENTATION should be define to 1 when building Gr and 0 when including
-// it in another dependent build. The Gr makefile/ide-project should define this
-// to 1.
-#if !defined(GR_IMPLEMENTATION)
- #define GR_IMPLEMENTATION 0
-#endif
-
-// If Gr is built as a shared library then GR_DLL should be defined to 1 (both
-// when building Gr and when including its headers in dependent builds). Only
-// currently supported minimally for Chrome's Win32 Multi-DLL build (TODO:
-// correctly exort all of the public API correctly and support shared lib on
-// other platforms).
-#if !defined(GR_DLL)
- #define GR_DLL 0
-#endif
-
-#if GR_DLL
- #if GR_WIN32_BUILD
- #if GR_IMPLEMENTATION
- #define GR_API __declspec(dllexport)
- #else
- #define GR_API __declspec(dllimport)
- #endif
- #else
- #define GR_API __attribute__((visibility("default")))
- #endif
-#else
- #define GR_API
-#endif
-
// By now we must have a GR_..._BUILD symbol set to 1, and a decision about
// debug -vs- release
//