From: robertphillips@google.com Date: Thu, 16 Aug 2012 15:04:34 +0000 (+0000) Subject: Compilation fix for r5123 (disabling template inst count tracking) X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~15154 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51ee8f1fd2553c576c4173ec701253e933115777;p=platform%2Fupstream%2FlibSkiaSharp.git Compilation fix for r5123 (disabling template inst count tracking) git-svn-id: http://skia.googlecode.com/svn/trunk@5124 2bbb7eff-a529-9590-31e7-b0007b416f81 --- diff --git a/src/core/SkMaskGamma.h b/src/core/SkMaskGamma.h index f3fab03..369127a 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 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 e2725ff..0a06965 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)