aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/BlurTest.cpp
diff options
context:
space:
mode:
authorGravatar tfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-10 22:08:27 +0000
committerGravatar tfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-10 22:08:27 +0000
commit4ee16bfaedb14aff8cf102f1f0722ff2529a9699 (patch)
tree292ed655c6d81fb7e6061467d23e27bd27986a34 /tests/BlurTest.cpp
parentf3abaeb0c5947e63856209166761d4ea766ff24b (diff)
Add a DEF_GPUTEST() macro.
This macro is similar to DEF_TEST() and simplifies the process of setting up a GPU test. BUG=skia:1952 TEST=tests R=mtklein@google.com Review URL: https://codereview.chromium.org/132293005 git-svn-id: http://skia.googlecode.com/svn/trunk@13033 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/BlurTest.cpp')
-rw-r--r--tests/BlurTest.cpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/tests/BlurTest.cpp b/tests/BlurTest.cpp
index a1eaca92b4..cfcc10362b 100644
--- a/tests/BlurTest.cpp
+++ b/tests/BlurTest.cpp
@@ -5,12 +5,14 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-#include "Test.h"
#include "SkBlurMask.h"
#include "SkBlurMaskFilter.h"
#include "SkCanvas.h"
#include "SkMath.h"
#include "SkPaint.h"
+#include "Test.h"
+#include "TestClassDef.h"
+
#if SK_SUPPORT_GPU
#include "GrContextFactory.h"
#include "SkGpuDevice.h"
@@ -383,12 +385,7 @@ static void test_sigma_range(skiatest::Reporter* reporter, GrContextFactory* fac
}
}
-///////////////////////////////////////////////////////////////////////////////
-
-static void test_blur(skiatest::Reporter* reporter, GrContextFactory* factory) {
+DEF_GPUTEST(Blur, reporter, factory) {
test_blur_drawing(reporter);
test_sigma_range(reporter, factory);
}
-
-#include "TestClassDef.h"
-DEFINE_GPUTESTCLASS("BlurMaskFilter", BlurTestClass, test_blur)