Compilation fix for r5123 (disabling template inst count tracking)
authorrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 16 Aug 2012 15:04:34 +0000 (15:04 +0000)
committerrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 16 Aug 2012 15:04:34 +0000 (15:04 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@5124 2bbb7eff-a529-9590-31e7-b0007b416f81

src/core/SkMaskGamma.h
src/core/SkScalerContext.cpp

index f3fab03..369127a 100644 (file)
@@ -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
index e2725ff..0a06965 100644 (file)
@@ -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)