diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-09-09 13:38:37 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-09-09 13:38:37 +0000 |
commit | a4de8c257ea0be8ff7081f645249b6afe5c48e7e (patch) | |
tree | 6d44deb55289b79e5462bd60a6b6a08fc6f950ce /tests | |
parent | 18c7617a30b29c368477ca7df244cc39ea92aeb9 (diff) |
Remove GrRefCnt.h in favor of SkRefCnt.h
This removes GrRefCnt.h with all its tyepdefs and #defines and just switch them
to the Sk* equivalents.
GrSafeSetNull was promoted to SkSafeSetNull in SkRefCnt.h.
BUG=None
TEST=none, no functional changes.
R=bsalomon@google.com, robertphillips@google.com
Author: tfarina@chromium.org
Review URL: https://chromiumcodereview.appspot.com/23904003
git-svn-id: http://skia.googlecode.com/svn/trunk@11151 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ClipCacheTest.cpp | 2 | ||||
-rw-r--r-- | tests/ReadWriteAlphaTest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ClipCacheTest.cpp b/tests/ClipCacheTest.cpp index c3801d74c5..9407688f2d 100644 --- a/tests/ClipCacheTest.cpp +++ b/tests/ClipCacheTest.cpp @@ -58,7 +58,7 @@ static void test_clip_bounds(skiatest::Reporter* reporter, GrContext* context) { return; } - GrAutoUnref au(texture); + SkAutoUnref au(texture); SkIRect intScreen = SkIRect::MakeWH(kXSize, kYSize); SkRect screen; diff --git a/tests/ReadWriteAlphaTest.cpp b/tests/ReadWriteAlphaTest.cpp index 8ae936e97b..fb177df8b5 100644 --- a/tests/ReadWriteAlphaTest.cpp +++ b/tests/ReadWriteAlphaTest.cpp @@ -46,7 +46,7 @@ static void ReadWriteAlphaTest(skiatest::Reporter* reporter, GrContextFactory* f return; } - GrAutoUnref au(texture); + SkAutoUnref au(texture); // create a distinctive texture for (int y = 0; y < Y_SIZE; ++y) { |