aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/DefaultPathRendererTest.cpp
diff options
context:
space:
mode:
authorGravatar Chris Dalton <csmartdalton@google.com>2018-04-25 12:28:03 -0600
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-25 19:59:59 +0000
commit218c29453f9f8aea98afef45ced2c151fe326a0f (patch)
treea2f04ff3e4dd20dfc58146c990124bcc39a52bb2 /tests/DefaultPathRendererTest.cpp
parent25af671a3d7d790b31b085172952df3867337431 (diff)
Remove the MSAA path renderer
Bug: skia: Change-Id: Ib18bede613c8d27fd6326f655dc2d638e35870ff Reviewed-on: https://skia-review.googlesource.com/123726 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com>
Diffstat (limited to 'tests/DefaultPathRendererTest.cpp')
-rw-r--r--tests/DefaultPathRendererTest.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/DefaultPathRendererTest.cpp b/tests/DefaultPathRendererTest.cpp
index 155d6a7b43..054708d14f 100644
--- a/tests/DefaultPathRendererTest.cpp
+++ b/tests/DefaultPathRendererTest.cpp
@@ -16,10 +16,6 @@
#include "effects/GrConstColorProcessor.h"
-static void allow_default_and_msaa(GrContextOptions* options) {
- options->fGpuPathRenderers = GpuPathRenderers::kMSAA;
-}
-
static void only_allow_default(GrContextOptions* options) {
options->fGpuPathRenderers = GpuPathRenderers::kNone;
}
@@ -126,16 +122,4 @@ DEF_GPUTEST_FOR_CONTEXTS(GrDefaultPathRendererTest,
run_test(ctx, reporter);
}
-DEF_GPUTEST_FOR_CONTEXTS(GrMSAAPathRendererTest,
- sk_gpu_test::GrContextFactory::IsRenderingContext,
- reporter, ctxInfo, allow_default_and_msaa) {
- GrContext* ctx = ctxInfo.grContext();
-
- if (!ctx->caps()->sampleShadingSupport()) { // The MSAAPathRenderer requires this
- return;
- }
-
- run_test(ctx, reporter);
-}
-
#endif