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(viewMatrix, color) | 60 : INHERITED(ClassID(), 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>(); | |
65 fDraws.addToHead(SkRef(pathRangeDraw)); | 64 fDraws.addToHead(SkRef(pathRangeDraw)); |
66 fTotalPathCount = pathRangeDraw->count(); | 65 fTotalPathCount = pathRangeDraw->count(); |
67 // Don't compute a bounding box. For dst copy texture, we'll opt instead for
it to just copy | 66 // Don't compute a bounding box. For dst copy texture, we'll opt instead for
it to just copy |
68 // the entire dst. Realistically this is a moot point, because any context t
hat supports | 67 // the entire dst. Realistically this is a moot point, because any context t
hat supports |
69 // NV_path_rendering will also support NV_blend_equation_advanced. | 68 // NV_path_rendering will also support NV_blend_equation_advanced. |
70 // For clipping we'll just skip any optimizations based on the bounds. | 69 // For clipping we'll just skip any optimizations based on the bounds. |
71 fBounds.setLargest(); | 70 fBounds.setLargest(); |
72 } | 71 } |
73 | 72 |
74 bool GrDrawPathRangeBatch::onCombineIfPossible(GrBatch* t, const GrCaps& caps) { | 73 bool GrDrawPathRangeBatch::onCombineIfPossible(GrBatch* t, const GrCaps& caps) { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 memcpy(indices, (*iter.get())->indices(), cnt * sizeof(uint16_t)); | 136 memcpy(indices, (*iter.get())->indices(), cnt * sizeof(uint16_t)); |
138 indices += cnt; | 137 indices += cnt; |
139 memcpy(transforms, (*iter.get())->transforms(), cnt * floatsPerTransform
* sizeof(float)); | 138 memcpy(transforms, (*iter.get())->transforms(), cnt * floatsPerTransform
* sizeof(float)); |
140 transforms += cnt * floatsPerTransform; | 139 transforms += cnt * floatsPerTransform; |
141 } | 140 } |
142 SkASSERT(indices - indexStorage.get() == fTotalPathCount); | 141 SkASSERT(indices - indexStorage.get() == fTotalPathCount); |
143 state->gpu()->pathRendering()->drawPaths(args, range, indexStorage.get(), | 142 state->gpu()->pathRendering()->drawPaths(args, range, indexStorage.get(), |
144 GrPathRange::kU16_PathIndexType, transformStorage.get(), transformType, | 143 GrPathRange::kU16_PathIndexType, transformStorage.get(), transformType, |
145 fTotalPathCount); | 144 fTotalPathCount); |
146 } | 145 } |
OLD | NEW |