HomeSort by relevance Sort by last modified time
    Searched defs:streamOffset (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
IndexRangeCache.h 22 unsigned int streamOffset);
46 unsigned int streamOffset;
VertexBuffer.h 131 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...]
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...]
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;

Completed in 574 milliseconds