OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef GrOvalRenderer_DEFINED | 8 #ifndef GrOvalRenderer_DEFINED |
9 #define GrOvalRenderer_DEFINED | 9 #define GrOvalRenderer_DEFINED |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 GrOvalRenderer() : fRRectIndexBuffer(NULL) {} | 27 GrOvalRenderer() : fRRectIndexBuffer(NULL) {} |
28 ~GrOvalRenderer() { | 28 ~GrOvalRenderer() { |
29 this->reset(); | 29 this->reset(); |
30 } | 30 } |
31 | 31 |
32 void reset(); | 32 void reset(); |
33 | 33 |
34 bool drawOval(GrDrawTarget* target, const GrContext* context, bool useAA, | 34 bool drawOval(GrDrawTarget* target, const GrContext* context, bool useAA, |
35 const SkRect& oval, const SkStrokeRec& stroke); | 35 const SkRect& oval, const SkStrokeRec& stroke); |
36 bool drawSimpleRRect(GrDrawTarget* target, GrContext* context, bool useAA, | 36 bool drawRRect(GrDrawTarget* target, GrContext* context, bool useAA, |
37 const SkRRect& rrect, const SkStrokeRec& stroke); | 37 const SkRRect& rrect, const SkStrokeRec& stroke); |
| 38 bool drawDRRect(GrDrawTarget* target, GrContext* context, bool useAA, |
| 39 const SkRRect& outer, const SkRRect& inner); |
38 | 40 |
39 private: | 41 private: |
40 bool drawEllipse(GrDrawTarget* target, bool useCoverageAA, | 42 bool drawEllipse(GrDrawTarget* target, bool useCoverageAA, |
41 const SkRect& ellipse, | 43 const SkRect& ellipse, |
42 const SkStrokeRec& stroke); | 44 const SkStrokeRec& stroke); |
43 bool drawDIEllipse(GrDrawTarget* target, bool useCoverageAA, | 45 bool drawDIEllipse(GrDrawTarget* target, bool useCoverageAA, |
44 const SkRect& ellipse, | 46 const SkRect& ellipse, |
45 const SkStrokeRec& stroke); | 47 const SkStrokeRec& stroke); |
46 void drawCircle(GrDrawTarget* target, bool useCoverageAA, | 48 void drawCircle(GrDrawTarget* target, bool useCoverageAA, |
47 const SkRect& circle, | 49 const SkRect& circle, |
48 const SkStrokeRec& stroke); | 50 const SkStrokeRec& stroke); |
49 | 51 |
50 GrIndexBuffer* rRectIndexBuffer(GrGpu* gpu); | 52 GrIndexBuffer* rRectIndexBuffer(GrGpu* gpu); |
51 | 53 |
52 GrIndexBuffer* fRRectIndexBuffer; | 54 GrIndexBuffer* fRRectIndexBuffer; |
53 | 55 |
54 typedef SkRefCnt INHERITED; | 56 typedef SkRefCnt INHERITED; |
55 }; | 57 }; |
56 | 58 |
57 #endif // GrOvalRenderer_DEFINED | 59 #endif // GrOvalRenderer_DEFINED |
OLD | NEW |