/external/skia/src/core/ |
D | SkVertState.cpp | 23 const uint16_t* indices = state->fIndices; in TrianglesX() 53 const uint16_t* indices = state->fIndices; in TriangleStripX() 83 const uint16_t* indices = state->fIndices; in TriangleFanX() 98 return fIndices ? TrianglesX : Triangles; in chooseProc() 100 return fIndices ? TriangleStripX : TriangleStrip; in chooseProc() 102 return fIndices ? TriangleFanX : TriangleFan; in chooseProc()
|
D | SkVertState.h | 28 : fIndices(indices) { in VertState() 48 const uint16_t* fIndices; member
|
D | SkDevice.cpp | 120 data.fTexCoords, data.fColors, xmode, data.fIndices, data.fIndexCount, in drawPatch()
|
/external/skia/src/utils/ |
D | SkMeshUtils.cpp | 26 fIndices = NULL; in init() 41 fIndices = indices; in init() 46 fIndices = (uint16_t*)(fTex + fTexCount); in init() 51 uint16_t* idx = fIndices; in init()
|
D | SkPatchUtils.cpp | 222 data->fIndices = SkNEW_ARRAY(uint16_t, data->fIndexCount); in getVertexData() 318 data->fIndices[i] = x * stride + y; in getVertexData() 319 data->fIndices[i + 1] = x * stride + 1 + y; in getVertexData() 320 data->fIndices[i + 2] = (x + 1) * stride + 1 + y; in getVertexData() 321 data->fIndices[i + 3] = data->fIndices[i]; in getVertexData() 322 data->fIndices[i + 4] = data->fIndices[i + 2]; in getVertexData() 323 data->fIndices[i + 5] = (x + 1) * stride + y; in getVertexData()
|
D | SkPatchUtils.h | 27 uint16_t* fIndices; member 35 , fIndices(NULL) { } in VertexData() 41 SkDELETE_ARRAY(fIndices); in ~VertexData()
|
D | SkNinePatch.cpp | 100 const uint16_t* fIndices; member 200 mesh.fIndices = NULL; in DrawMesh() 204 mesh.fIndices = g3x3Indices; in DrawMesh() 208 mesh.fIndices = indices; in DrawMesh() 249 mesh.fIndices, indexCount, p); in DrawMesh()
|
D | SkPatchGrid.cpp | 183 data.fIndices, data.fIndexCount, paint); in draw()
|
/external/junit/src/org/junit/internal/ |
D | ArrayComparisonFailure.java | 16 private List<Integer> fIndices= new ArrayList<Integer>(); field in ArrayComparisonFailure 34 fIndices.add(0, index); in addDimension() 43 for (int each : fIndices) { in getMessage()
|
/external/skia/src/gpu/ |
D | GrAAConvexTessellator.cpp | 101 *fIndices.push() = i0; in addTri() 102 *fIndices.push() = i1; in addTri() 103 *fIndices.push() = i2; in addTri() 110 fIndices.rewind(); in rewind() 241 fIndices.setReserve(18*path.countPoints() + 6); in extractFromPath() 394 SkASSERT(0 == fIndices.count()); in createOuterRing() 624 SkASSERT(0 == (fIndices.count() % 3)); in validate() 832 for (int i = 0; i < fIndices.count(); i += 3) { in draw() 833 SkASSERT(fIndices[i] < this->numPts()) ; in draw() 834 SkASSERT(fIndices[i+1] < this->numPts()) ; in draw() [all …]
|
D | GrAAConvexTessellator.h | 44 int numIndices() const { return fIndices.count(); } in numIndices() 48 int index(int index) const { return fIndices[index]; } in index() 223 SkTDArray<int> fIndices; variable
|
D | GrInOrderCommandBuilder.cpp | 110 if (&previous->fIndices[previous->fCount*indexBytes] == savedIndices && in recordDrawPaths() 121 dp->fIndices = savedIndices; in recordDrawPaths()
|
D | GrTargetCommands.cpp | 88 fIndices, fIndexType, in execute()
|
D | GrTargetCommands.h | 164 char* fIndices; member
|
D | GrContext.cpp | 739 SkTDArray<uint16_t> fIndices; member 841 for (int j = 0; j < args.fIndices.count(); ++j, ++indexOffset) { in generateGeometry() 842 *(indices + indexOffset) = args.fIndices[j] + vertexOffset; in generateGeometry() 886 installedGeo.fIndices.append(indexCount, indices); in DrawVerticesBatch()
|
/external/skia/include/utils/ |
D | SkMeshUtils.h | 31 const uint16_t* indices() const { return fIndices; } in indices() 39 uint16_t* fIndices; variable
|
/external/skia/src/utils/debugger/ |
D | SkDrawCommand.cpp | 823 fIndices = new uint16_t[indexCount]; in SkDrawVerticesCommand() 824 memcpy(fIndices, indices, indexCount * sizeof(uint16_t)); in SkDrawVerticesCommand() 826 fIndices = NULL; in SkDrawVerticesCommand() 842 delete [] fIndices; in ~SkDrawVerticesCommand() 847 fTexs, fColors, fXfermode, fIndices, in execute()
|
D | SkDrawCommand.h | 554 uint16_t* fIndices; variable
|