From b947625800a26194fcf63d7b57dadb1a63677f6a Mon Sep 17 00:00:00 2001 From: "mike@reedtribe.org" Date: Thu, 15 Nov 2012 02:37:45 +0000 Subject: remove unused (and undefined) SkColorSpace parameter. git-svn-id: http://skia.googlecode.com/svn/trunk@6427 2bbb7eff-a529-9590-31e7-b0007b416f81 --- samplecode/SampleFatBits.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'samplecode/SampleFatBits.cpp') diff --git a/samplecode/SampleFatBits.cpp b/samplecode/SampleFatBits.cpp index e88a1d5aab..eac713632f 100644 --- a/samplecode/SampleFatBits.cpp +++ b/samplecode/SampleFatBits.cpp @@ -91,10 +91,10 @@ public: SkImage::Info info = { width, height, SkImage::kPMColor_ColorType, SkImage::kPremul_AlphaType }; - fMinSurface.reset(SkSurface::NewRaster(info, NULL)); + fMinSurface.reset(SkSurface::NewRaster(info)); info.fWidth *= zoom; info.fHeight *= zoom; - fMaxSurface.reset(SkSurface::NewRaster(info, NULL)); + fMaxSurface.reset(SkSurface::NewRaster(info)); } void drawBG(SkCanvas*); -- cgit v1.2.3