Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2016 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 GrRegionBatch_DEFINED | |
| 9 #define GrRegionBatch_DEFINED | |
| 10 | |
| 11 #include "GrColor.h" | |
| 12 | |
| 13 class GrDrawBatch; | |
| 14 class SkMatrix; | |
| 15 class SkRegion; | |
| 16 | |
| 17 namespace GrRegionBatch { | |
| 18 | |
| 19 GrDrawBatch* Create(GrColor color, | |
| 20 const SkMatrix& viewMatrix, | |
| 21 const SkRegion& region); | |
| 22 | |
| 23 }; | |
| 24 | |
| 25 #endif | |
| OLD | NEW |