OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vertSize
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/gpu/
GrBitmapTextContext.cpp
579
size_t
vertSize
= useColorVerts ? (2 * sizeof(SkPoint) + sizeof(GrColor)) :
582
SkASSERT(
vertSize
== fDrawTarget->getDrawState().getVertexStride());
585
reinterpret_cast<intptr_t>(fVertices) +
vertSize
* fCurrVertex);
586
positions->setRectFan(r.fLeft, r.fTop, r.fRight, r.fBottom,
vertSize
);
590
reinterpret_cast<intptr_t>(positions) +
vertSize
- sizeof(SkPoint));
595
vertSize
);
604
colors = reinterpret_cast<GrColor*>(reinterpret_cast<intptr_t>(colors) +
vertSize
);
GrDistanceFieldTextContext.cpp
414
size_t
vertSize
= fUseLCDText ? (2 * sizeof(SkPoint))
417
SkASSERT(
vertSize
== fDrawTarget->getDrawState().getVertexStride());
420
reinterpret_cast<intptr_t>(fVertices) +
vertSize
* fCurrVertex);
421
positions->setRectFan(r.fLeft, r.fTop, r.fRight, r.fBottom,
vertSize
);
425
reinterpret_cast<intptr_t>(positions) +
vertSize
- sizeof(SkPoint));
430
vertSize
);
439
colors = reinterpret_cast<GrColor*>(reinterpret_cast<intptr_t>(colors) +
vertSize
);
Completed in 42 milliseconds