skia2/tests/DrawFilterTest.cpp
reed e8f3062a36 switch surface to sk_sp
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1817383002
CQ_EXTRA_TRYBOTS=client.skia.compile:Build-Ubuntu-GCC-x86_64-Release-CMake-Trybot,Build-Mac-Clang-x86_64-Release-CMake-Trybot

Review URL: https://codereview.chromium.org/1817383002
2016-03-23 18:59:25 -07:00

50 lines
1.2 KiB
C++

/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkCanvas.h"
#include "SkDrawFilter.h"
#include "SkSurface.h"
#include "Test.h"
#ifdef SK_SUPPORT_LEGACY_DRAWFILTER
namespace {
class TestFilter : public SkDrawFilter {
public:
bool filter(SkPaint* p, Type) override {
return true;
}
};
}
/**
* canvas.setDrawFilter is defined to be local to the save/restore block, such that if you
* do the following: save / modify-drawfilter / restore, the current drawfilter should be what
* it was before the save.
*/
static void test_saverestore(skiatest::Reporter* reporter) {
auto surface(SkSurface::MakeRasterN32Premul(10, 10));
SkCanvas* canvas = surface->getCanvas();
SkAutoTUnref<TestFilter> df(new TestFilter);
REPORTER_ASSERT(reporter, nullptr == canvas->getDrawFilter());
canvas->save();
canvas->setDrawFilter(df);
REPORTER_ASSERT(reporter, nullptr != canvas->getDrawFilter());
canvas->restore();
REPORTER_ASSERT(reporter, nullptr == canvas->getDrawFilter());
}
DEF_TEST(DrawFilter, reporter) {
test_saverestore(reporter);
}
#endif