OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:streamOffset
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
IndexRangeCache.cpp
20
unsigned int
streamOffset
)
22
mIndexRangeCache[IndexRange(type, offset, count)] = IndexBounds(minIdx, maxIdx,
streamOffset
);
33
unsigned int rangeStart = i->second.
streamOffset
;
34
unsigned int rangeEnd = i->second.
streamOffset
+ (gl::ComputeTypeSize(i->first.type) * i->first.count);
55
if (outStreamOffset) *outStreamOffset = i->second.
streamOffset
;
88
: minIndex(0), maxIndex(0),
streamOffset
(0)
93
: minIndex(minIdx), maxIndex(maxIdx),
streamOffset
(offset)
IndexRangeCache.h
22
unsigned int
streamOffset
);
46
unsigned int
streamOffset
;
VertexDataManager.cpp
187
unsigned int
streamOffset
= 0;
193
streamOffset
= attribs[i].mOffset + outputElementSize * start;
203
if (!staticBuffer->lookupAttribute(attribs[i], &
streamOffset
))
209
if (!staticBuffer->storeVertexAttributes(attribs[i], -startIndex, totalCount, 0, &
streamOffset
))
217
if (
streamOffset
+ firstElementOffset + startOffset <
streamOffset
)
222
streamOffset
+= firstElementOffset + startOffset;
228
!mStreamingBuffer->storeVertexAttributes(attribs[i], start, totalCount, instances, &
streamOffset
))
241
translated[i].offset =
streamOffset
;
263
unsigned int
streamOffset
;
[
all
...]
VertexBuffer.cpp
240
*outStreamOffset = mCache[element].
streamOffset
;
272
unsigned int
streamOffset
;
273
if (VertexBufferInterface::storeVertexAttributes(attrib, start, count, instances, &
streamOffset
))
276
VertexElement element = { attrib.mType, attrib.mSize, attrib.stride(), attrib.mNormalized, attributeOffset,
streamOffset
};
281
*outStreamOffset =
streamOffset
;
IndexDataManager.cpp
164
unsigned int
streamOffset
= 0;
169
streamOffset
= offset;
184
&translated->maxIndex, &
streamOffset
))
186
streamOffset
= (offset / gl::ComputeTypeSize(type)) * gl::ComputeTypeSize(destinationIndexType);
189
translated->maxIndex,
streamOffset
);
231
if (!indexBuffer->mapBuffer(bufferSizeRequired, &output, &
streamOffset
))
249
streamOffset
= (offset / gl::ComputeTypeSize(type)) * gl::ComputeTypeSize(destinationIndexType);
251
translated->maxIndex,
streamOffset
);
258
translated->startIndex =
streamOffset
/ gl::ComputeTypeSize(destinationIndexType);
259
translated->startOffset =
streamOffset
;
[
all
...]
IndexBuffer.cpp
70
bool IndexBufferInterface::mapBuffer(unsigned int size, void** outMappedMemory, unsigned int *
streamOffset
)
87
if (
streamOffset
)
89
*
streamOffset
= mWritePosition;
IndexBuffer.h
62
bool mapBuffer(unsigned int size, void** outMappedMemory, unsigned int *
streamOffset
);
VertexBuffer.h
131
unsigned int
streamOffset
;
Completed in 184 milliseconds