diff options
author | mike@reedtribe.org <mike@reedtribe.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-11-15 02:37:45 +0000 |
---|---|---|
committer | mike@reedtribe.org <mike@reedtribe.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-11-15 02:37:45 +0000 |
commit | b947625800a26194fcf63d7b57dadb1a63677f6a (patch) | |
tree | d1a8d886578da7bb1c493364a4d12e12000aa0ac /tests | |
parent | 7a722f0ebf6acfd02899bc30a5529d0b23b3ffae (diff) |
remove unused (and undefined) SkColorSpace parameter.
git-svn-id: http://skia.googlecode.com/svn/trunk@6427 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r-- | tests/PathTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp index a74ba8a8e6..97ba258ed7 100644 --- a/tests/PathTest.cpp +++ b/tests/PathTest.cpp @@ -22,7 +22,7 @@ static SkSurface* new_surface(int w, int h) { SkImage::Info info = { w, h, SkImage::kPMColor_ColorType, SkImage::kPremul_AlphaType }; - return SkSurface::NewRaster(info, NULL); + return SkSurface::NewRaster(info); } // Make sure we stay non-finite once we get there (unless we reset or rewind). |