blob: c95fd7037bbb25c2a64b6252e4bf288ffcd0196c [file] [log] [blame]
joshualitt9c80b5f2015-08-13 10:05:51 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrBWFillRectBatch_DEFINED
9#define GrBWFillRectBatch_DEFINED
10
11#include "GrColor.h"
12
bsalomonabd30f52015-08-13 13:34:48 -070013class GrDrawBatch;
joshualitt9c80b5f2015-08-13 10:05:51 -070014class SkMatrix;
15struct SkRect;
16
17namespace GrBWFillRectBatch {
bsalomonabd30f52015-08-13 13:34:48 -070018GrDrawBatch* Create(GrColor color,
joshualitt9c80b5f2015-08-13 10:05:51 -070019 const SkMatrix& viewMatrix,
20 const SkRect& rect,
21 const SkRect* localRect,
22 const SkMatrix* localMatrix);
23};
24
25#endif