OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startVertex
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/skia/src/gpu/
GrBufferAllocPool.h
217
* the buffer at the offset indicated by
startVertex
. Until that time they
224
* @param
startVertex
returns the offset into buffer of the first vertex.
231
int*
startVertex
);
240
int*
startVertex
);
GrBufferAllocPool.cpp
403
int*
startVertex
) {
407
SkASSERT(
startVertex
);
418
*
startVertex
= static_cast<int>(offset / vertexSize);
426
int*
startVertex
) {
427
void* space = makeSpace(vertexSize, vertexCount, buffer,
startVertex
);
GrDrawTarget.h
282
* @param
startVertex
the vertex in the vertex array/buffer corresponding
293
int
startVertex
,
304
* @param
startVertex
the vertex in the vertex array/buffer corresponding
311
int
startVertex
,
[
all
...]
GrDrawTarget.cpp
349
bool GrDrawTarget::checkDraw(GrPrimitiveType type, int
startVertex
,
355
int maxVertex =
startVertex
+ vertexCount;
474
int
startVertex
,
479
if (indexCount > 0 && this->checkDraw(type,
startVertex
, startIndex, vertexCount, indexCount)) {
482
info.fStartVertex =
startVertex
;
503
int
startVertex
,
506
if (vertexCount > 0 && this->checkDraw(type,
startVertex
, -1, vertexCount, -1)) {
509
info.fStartVertex =
startVertex
;
[
all
...]
GrInOrderDrawBuffer.cpp
250
int adjustedStartVertex = poolState.fPoolStartVertex + info.
startVertex
();
251
if (draw->
startVertex
() + draw->vertexCount() != adjustedStartVertex) {
255
SkASSERT(poolState.fPoolStartVertex == draw->
startVertex
() + draw->vertexCount());
349
size_t bytes = (info.vertexCount() + info.
startVertex
()) * drawState.getVertexStride();
[
all
...]
/external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL_program.cpp
299
size_t vertexOffsetInBytes = stride * info.
startVertex
();
Completed in 56 milliseconds