suppress printfs
authorreed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 5 Jul 2011 19:09:47 +0000 (19:09 +0000)
committerreed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 5 Jul 2011 19:09:47 +0000 (19:09 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@1793 2bbb7eff-a529-9590-31e7-b0007b416f81

gpu/src/GrAtlas.cpp
gpu/src/GrTextStrike.cpp
src/gpu/SkGpuDevice.cpp

index 6f2ed9e..ea4949b 100644 (file)
@@ -62,7 +62,7 @@ GrAtlas::GrAtlas(GrAtlasMgr* mgr, int plotX, int plotY, GrMaskFormat format) {
     fMaskFormat = format;
 
 #if GR_DEBUG
-    GrPrintf(" GrAtlas %p [%d %d] %d\n", this, plotX, plotY, gCounter);
+//    GrPrintf(" GrAtlas %p [%d %d] %d\n", this, plotX, plotY, gCounter);
     gCounter += 1;
 #endif
 }
@@ -74,7 +74,7 @@ GrAtlas::~GrAtlas() {
 
 #if GR_DEBUG
     --gCounter;
-    GrPrintf("~GrAtlas %p [%d %d] %d\n", this, fPlot.fX, fPlot.fY, gCounter);
+//    GrPrintf("~GrAtlas %p [%d %d] %d\n", this, fPlot.fX, fPlot.fY, gCounter);
 #endif
 }
 
index c44ad38..bd6d7cf 100644 (file)
@@ -140,7 +140,7 @@ GrTextStrike::GrTextStrike(GrFontCache* cache, const GrKey* key,
     fMaskFormat = format;
 
 #if GR_DEBUG
-    GrPrintf(" GrTextStrike %p %d\n", this, gCounter);
+//    GrPrintf(" GrTextStrike %p %d\n", this, gCounter);
     gCounter += 1;
 #endif
 }
@@ -154,7 +154,7 @@ GrTextStrike::~GrTextStrike() {
 
 #if GR_DEBUG
     gCounter -= 1;
-    GrPrintf("~GrTextStrike %p %d\n", this, gCounter);
+//    GrPrintf("~GrTextStrike %p %d\n", this, gCounter);
 #endif
 }
 
index e182f10..a49e079 100644 (file)
@@ -481,7 +481,6 @@ bool SkGpuDevice::skPaint2GrPaintShader(const SkPaint& skPaint,
 
     GrSamplerState::SampleMode sampleMode = sk_bmp_type_to_sample_mode[bmptype];
     if (-1 == sampleMode) {
-        SkDebugf("shader->asABitmap() == kNone_BitmapType\n");
         return false;
     }
     GrSamplerState* sampler = grPaint->getTextureSampler(kShaderTextureIdx);