blob: 2ebcd79a2fc1dab477ffaab75c0405f9e8d31e65 [file] [log] [blame]
/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrTessellatingPathRenderer_DEFINED
#define GrTessellatingPathRenderer_DEFINED
#include "src/gpu/GrPathRenderer.h"
/**
* Subclass that renders the path by converting to screen-space trapezoids plus
* extra 1-pixel geometry for AA.
*/
class GrTessellatingPathRenderer : public GrPathRenderer {
public:
GrTessellatingPathRenderer();
#if GR_TEST_UTILS
void setMaxVerbCount(int maxVerbCount) { fMaxVerbCount = maxVerbCount; }
#endif
private:
CanDrawPath onCanDrawPath(const CanDrawPathArgs&) const override;
StencilSupport onGetStencilSupport(const GrShape&) const override {
return GrPathRenderer::kNoSupport_StencilSupport;
}
bool onDrawPath(const DrawPathArgs&) override;
int fMaxVerbCount;
typedef GrPathRenderer INHERITED;
};
#endif