aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/ops/GrRectOpFactory.h
blob: 19bce7fd2c9723b7be12ca6f17c21fc18cd5ef9b (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * 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 GrRectOpFactory_DEFINED
#define GrRectOpFactory_DEFINED

#include "GrAAFillRectOp.h"
#include "GrAAStrokeRectOp.h"
#include "GrAnalyticRectOp.h"
#include "GrColor.h"
#include "GrMeshDrawOp.h"
#include "GrNonAAFillRectOp.h"
#include "GrNonAAStrokeRectOp.h"
#include "GrPaint.h"
#include "SkMatrix.h"
#include "SkRefCnt.h"

struct SkRect;
class SkStrokeRec;

/**
 * A factory for returning GrDrawOps which can draw rectangles.
 */
namespace GrRectOpFactory {

inline std::unique_ptr<GrMeshDrawOp> MakeNonAAFill(GrColor color,
                                                   const SkMatrix& viewMatrix,
                                                   const SkRect& rect,
                                                   const SkRect* localRect,
                                                   const SkMatrix* localMatrix) {
    if (viewMatrix.hasPerspective() || (localMatrix && localMatrix->hasPerspective())) {
        return GrNonAAFillRectOp::MakeWithPerspective(color, viewMatrix, rect, localRect,
                                                      localMatrix);
    } else {
        return GrNonAAFillRectOp::Make(color, viewMatrix, rect, localRect, localMatrix);
    }
}

inline std::unique_ptr<GrMeshDrawOp> MakeAAFill(const GrPaint& paint,
                                                const SkMatrix& viewMatrix,
                                                const SkRect& rect,
                                                const SkRect& croppedRect,
                                                const SkRect& devRect) {
    if (!paint.usesDistanceVectorField()) {
        return GrAAFillRectOp::Make(paint.getColor(), viewMatrix, croppedRect, devRect);
    } else {
        return GrAnalyticRectOp::Make(paint.getColor(), viewMatrix, rect, croppedRect, devRect);
    }
}

inline std::unique_ptr<GrMeshDrawOp> MakeAAFill(GrColor color,
                                                const SkMatrix& viewMatrix,
                                                const SkMatrix& localMatrix,
                                                const SkRect& rect,
                                                const SkRect& devRect) {
    return GrAAFillRectOp::Make(color, viewMatrix, localMatrix, rect, devRect);
}

inline std::unique_ptr<GrMeshDrawOp> MakeNonAAStroke(GrColor color,
                                                     const SkMatrix& viewMatrix,
                                                     const SkRect& rect,
                                                     const SkStrokeRec& strokeRec,
                                                     bool snapToPixelCenters) {
    return GrNonAAStrokeRectOp::Make(color, viewMatrix, rect, strokeRec, snapToPixelCenters);
}

inline std::unique_ptr<GrMeshDrawOp> MakeAAStroke(GrColor color,
                                                  const SkMatrix& viewMatrix,
                                                  const SkRect& rect,
                                                  const SkStrokeRec& stroke) {
    return GrAAStrokeRectOp::Make(color, viewMatrix, rect, stroke);
}

// First rect is outer; second rect is inner
std::unique_ptr<GrMeshDrawOp> MakeAAFillNestedRects(GrColor, const SkMatrix& viewMatrix,
                                                    const SkRect rects[2]);
};

#endif