aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-16 15:04:34 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-16 15:04:34 +0000
commit51ee8f1fd2553c576c4173ec701253e933115777 (patch)
tree67880cc7db6f0fc9f2456ae295dbb6a03a6f0e42 /src/core
parenta22e2117e44efa4298dd0eb6df304a8166c8e9c3 (diff)
Compilation fix for r5123 (disabling template inst count tracking)
git-svn-id: http://skia.googlecode.com/svn/trunk@5124 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core')
-rw-r--r--src/core/SkMaskGamma.h2
-rw-r--r--src/core/SkScalerContext.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/SkMaskGamma.h b/src/core/SkMaskGamma.h
index f3fab033fc..369127ad49 100644
--- a/src/core/SkMaskGamma.h
+++ b/src/core/SkMaskGamma.h
@@ -105,7 +105,7 @@ void SkTMaskGamma_build_correcting_lut(uint8_t table[256], U8CPU srcI, SkScalar
*/
template <int R_LUM_BITS, int G_LUM_BITS, int B_LUM_BITS> class SkTMaskGamma : public SkRefCnt {
public:
- SK_DECLARE_INST_COUNT_TEMPLATE(SkTMaskGamma)
+ //SK_DECLARE_INST_COUNT_TEMPLATE(SkTMaskGamma)
/**
* Creates tables to convert linear alpha values to gamma correcting alpha
diff --git a/src/core/SkScalerContext.cpp b/src/core/SkScalerContext.cpp
index e2725ffdfb..0a06965e95 100644
--- a/src/core/SkScalerContext.cpp
+++ b/src/core/SkScalerContext.cpp
@@ -22,7 +22,7 @@
#include "SkStroke.h"
#include "SkThread.h"
-SK_DEFINE_INST_COUNT(SkMaskGamma)
+//SK_DEFINE_INST_COUNT(SkMaskGamma)
#define ComputeBWRowBytes(width) (((unsigned)(width) + 7) >> 3)