aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/ops/GrNonAAStrokeRectOp.h
blob: 4071cfd2a932e49fbfa54dcf09a99495291a0294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * 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 GrNonAAStrokeRectOp_DEFINED
#define GrNonAAStrokeRectOp_DEFINED

#include "GrColor.h"
#include "SkRefCnt.h"

class GrLegacyMeshDrawOp;
struct SkRect;
class SkStrokeRec;
class SkMatrix;

namespace GrNonAAStrokeRectOp {

std::unique_ptr<GrLegacyMeshDrawOp> Make(GrColor color,
                                         const SkMatrix& viewMatrix,
                                         const SkRect& rect,
                                         const SkStrokeRec&,
                                         bool snapToPixelCenters);
}

#endif