HomeSort by relevance Sort by last modified time
    Searched refs:fVertices (Results 1 - 13 of 13) sorted by null

  /external/skia/src/core/
SkVertices.cpp 69 return; // fVertices will already be null
73 fVertices.reset(new (storage) SkVertices);
78 fVertices->fPositions = (SkPoint*)ptr; ptr += sizes.fVSize;
79 fVertices->fTexs = sizes.fTSize ? (SkPoint*)ptr : nullptr; ptr += sizes.fTSize;
80 fVertices->fColors = sizes.fCSize ? (SkColor*)ptr : nullptr; ptr += sizes.fCSize;
81 fVertices->fIndices = sizes.fISize ? (uint16_t*)ptr : nullptr;
82 fVertices->fVertexCnt = vertexCount;
83 fVertices->fIndexCnt = indexCount;
84 fVertices->fMode = mode;
89 if (fVertices) {
    [all...]
  /external/skia/src/gpu/ops/
GrDrawVerticesOp.h 76 sk_sp<SkVertices> fVertices;
82 return fVertices->hasTexCoords() && !fIgnoreTexCoords;
86 return fVertices->hasColors() && !fIgnoreColors;
92 return fMeshes[0].fVertices->hasIndices();
116 // GrPrimitiveType is more expressive than fVertices.mode() so it is used instead and we ignore
GrTessellatingPathRenderer.cpp 71 , fVertices(nullptr) {
81 fVertices = fVertexBuffer->map();
83 fVertices = sk_malloc_throw(vertexCount * stride());
85 return fVertices;
91 fVertexBuffer->updateData(fVertices, actualCount * stride());
92 sk_free(fVertices);
94 fVertices = nullptr;
101 void* fVertices;
110 , fVertices(nullptr) {}
113 fVertices = fTarget->makeVertexSpace(stride(), vertexCount, &fVertexBuffer, &fFirstVertex)
    [all...]
GrDrawVerticesOp.cpp 50 mesh.fVertices = std::move(vertices);
68 this->setTransformedBounds(mesh.fVertices->bounds(), viewMatrix, HasAABloat::kNo, zeroArea);
182 int indexCount = mesh.fVertices->indexCount();
184 *indices++ = mesh.fVertices->indices()[j] + vertexOffset;
187 int vertexCount = mesh.fVertices->vertexCount();
188 const SkPoint* positions = mesh.fVertices->positions();
189 const SkColor* colors = mesh.fVertices->colors();
190 const SkPoint* localCoords = mesh.fVertices->texCoords();
263 if (fMeshes[0].fVertices->hasIndices() != that->fMeshes[0].fVertices->hasIndices())
    [all...]
GrDefaultPathRenderer.cpp 216 uint16_t currentIndex() const { return fCurVert - fVertices; }
227 fVertices = static_cast<SkPoint*>(fTarget->makeVertexSpaceAtLeast(fVertexStride,
246 fCurVert = fVertices;
263 int vertexCount = fCurVert - fVertices;
283 if (fCurVert + vertsNeeded > fVertices + fVerticesInChunk ||
292 SkPoint subpathStartPt = fVertices[fSubpathIndexStart];
317 SkPoint* fVertices;
  /external/skia/include/core/
SkVertices.h 56 bool isValid() const { return fVertices != nullptr; }
75 sk_sp<SkVertices> fVertices;
  /external/skia/bench/
GLVertexAttributesBench.cpp 57 SkTArray<unsigned char> fVertices;
173 fVertices.reset(static_cast<int>(kVerticesPerTri * kNumTri * fStride));
175 unsigned char* ptr = &fVertices[static_cast<int>(i * kVerticesPerTri * fStride)];
227 GR_GL_CALL(gl, BufferData(GR_GL_ARRAY_BUFFER, fVertices.count(), fVertices.begin(),
  /external/skia/src/utils/
SkShadowUtils.cpp 231 return fEntries[i].fVertices;
248 fSize -= fEntries[i].fVertices->approximateSize();
251 fEntries[i].fVertices = vertices;
260 sk_sp<SkVertices> fVertices;
320 sk_sp<SkVertices> fVertices;
339 findContext->fVertices =
341 if (findContext->fVertices) {
408 bool foundInCache = SkToBool(context.fVertices);
410 vertices = std::move(context.fVertices);
  /external/skia/src/gpu/text/
GrAtlasTextBlob_regenInOp.cpp 204 intptr_t vertex = reinterpret_cast<intptr_t>(fVertices);
330 *vertices = fVertices + info.vertexStartIndex();
GrAtlasTextBlob.cpp 37 cacheBlob->fVertices = sizeof(GrAtlasTextBlob) +
39 cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount);
107 intptr_t vertex = reinterpret_cast<intptr_t>(this->fVertices + subRun->vertexEndIndex());
GrAtlasTextBlob.h 533 unsigned char* fVertices;
  /external/skia/tools/debugger/
SkDrawCommand.h 707 sk_sp<SkVertices> fVertices;
SkDrawCommand.cpp     [all...]

Completed in 179 milliseconds