OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 #include "GrDrawPathBatch.h" | 8 #include "GrDrawPathBatch.h" |
9 | 9 |
10 SkString GrDrawPathBatch::dumpInfo() const { | 10 SkString GrDrawPathBatch::dumpInfo() const { |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 SkASSERT(kIncClamp_StencilOp == this->stencilSettings().passOp(pathFace)
); | 50 SkASSERT(kIncClamp_StencilOp == this->stencilSettings().passOp(pathFace)
); |
51 SkASSERT(kIncClamp_StencilOp == this->stencilSettings().failOp(pathFace)
); | 51 SkASSERT(kIncClamp_StencilOp == this->stencilSettings().failOp(pathFace)
); |
52 SkASSERT(0x1 != this->stencilSettings().writeMask(pathFace)); | 52 SkASSERT(0x1 != this->stencilSettings().writeMask(pathFace)); |
53 SkASSERT(!this->stencilSettings().isTwoSided()); | 53 SkASSERT(!this->stencilSettings().isTwoSided()); |
54 } | 54 } |
55 return isWinding; | 55 return isWinding; |
56 } | 56 } |
57 | 57 |
58 GrDrawPathRangeBatch::GrDrawPathRangeBatch(const SkMatrix& viewMatrix, const SkM
atrix& localMatrix, | 58 GrDrawPathRangeBatch::GrDrawPathRangeBatch(const SkMatrix& viewMatrix, const SkM
atrix& localMatrix, |
59 GrColor color, GrPathRangeDraw* pathR
angeDraw) | 59 GrColor color, GrPathRangeDraw* pathR
angeDraw) |
60 : INHERITED(ClassID(), viewMatrix, color) | 60 : INHERITED(viewMatrix, color) |
61 , fDraws(4) | 61 , fDraws(4) |
62 , fLocalMatrix(localMatrix) { | 62 , fLocalMatrix(localMatrix) { |
63 SkDEBUGCODE(pathRangeDraw->fUsedInBatch = true;) | 63 SkDEBUGCODE(pathRangeDraw->fUsedInBatch = true;) |
| 64 this->initClassID<GrDrawPathRangeBatch>(); |
64 fDraws.addToHead(SkRef(pathRangeDraw)); | 65 fDraws.addToHead(SkRef(pathRangeDraw)); |
65 fTotalPathCount = pathRangeDraw->count(); | 66 fTotalPathCount = pathRangeDraw->count(); |
66 // Don't compute a bounding box. For dst copy texture, we'll opt instead for
it to just copy | 67 // Don't compute a bounding box. For dst copy texture, we'll opt instead for
it to just copy |
67 // the entire dst. Realistically this is a moot point, because any context t
hat supports | 68 // the entire dst. Realistically this is a moot point, because any context t
hat supports |
68 // NV_path_rendering will also support NV_blend_equation_advanced. | 69 // NV_path_rendering will also support NV_blend_equation_advanced. |
69 // For clipping we'll just skip any optimizations based on the bounds. | 70 // For clipping we'll just skip any optimizations based on the bounds. |
70 fBounds.setLargest(); | 71 fBounds.setLargest(); |
71 } | 72 } |
72 | 73 |
73 bool GrDrawPathRangeBatch::onCombineIfPossible(GrBatch* t, const GrCaps& caps) { | 74 bool GrDrawPathRangeBatch::onCombineIfPossible(GrBatch* t, const GrCaps& caps) { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 memcpy(indices, (*iter.get())->indices(), cnt * sizeof(uint16_t)); | 137 memcpy(indices, (*iter.get())->indices(), cnt * sizeof(uint16_t)); |
137 indices += cnt; | 138 indices += cnt; |
138 memcpy(transforms, (*iter.get())->transforms(), cnt * floatsPerTransform
* sizeof(float)); | 139 memcpy(transforms, (*iter.get())->transforms(), cnt * floatsPerTransform
* sizeof(float)); |
139 transforms += cnt * floatsPerTransform; | 140 transforms += cnt * floatsPerTransform; |
140 } | 141 } |
141 SkASSERT(indices - indexStorage.get() == fTotalPathCount); | 142 SkASSERT(indices - indexStorage.get() == fTotalPathCount); |
142 state->gpu()->pathRendering()->drawPaths(args, range, indexStorage.get(), | 143 state->gpu()->pathRendering()->drawPaths(args, range, indexStorage.get(), |
143 GrPathRange::kU16_PathIndexType, transformStorage.get(), transformType, | 144 GrPathRange::kU16_PathIndexType, transformStorage.get(), transformType, |
144 fTotalPathCount); | 145 fTotalPathCount); |
145 } | 146 } |
OLD | NEW |