blob: 81cecf2c68318e30cf8ebfc6aa513ccb59a5a440 [file] [log] [blame]
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrAAHairLinePathRenderer_DEFINED
#define GrAAHairLinePathRenderer_DEFINED
#include "GrPathRenderer.h"
class GrAAHairLinePathRenderer : public GrPathRenderer {
public:
virtual ~GrAAHairLinePathRenderer();
static GrPathRenderer* Create(GrContext* context);
// GrPathRenderer overrides
virtual bool supportsAA(const GrDrawTarget* target,
const SkPath& path,
GrPathFill fill) const;
virtual bool canDrawPath(const GrDrawTarget* target,
const SkPath& path,
GrPathFill fill) const;
virtual void drawPath(GrDrawTarget::StageBitfield stages);
protected:
// GrPathRenderer overrides
virtual void pathWillClear();
private:
void resetGeom();
GrAAHairLinePathRenderer(const GrContext* context,
const GrIndexBuffer* fLinesIndexBuffer,
const GrIndexBuffer* fQuadsIndexBuffer);
bool createGeom(GrDrawTarget::StageBitfield stages);
const GrIndexBuffer* fLinesIndexBuffer;
const GrIndexBuffer* fQuadsIndexBuffer;
// have to recreate geometry if stages in use changes :(
GrDrawTarget::StageBitfield fPreviousStages;
int fPreviousRTHeight;
SkVector fPreviousTranslate;
GrIRect fClipRect;
// this path renderer draws everything in device coordinates
GrMatrix fPreviousViewMatrix;
int fLineSegmentCnt;
int fQuadCnt;
typedef GrPathRenderer INHERITED;
};
#endif