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

  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
IndexRangeCache.h 22 unsigned int streamOffset);
46 unsigned int streamOffset;
IndexDataManager.cpp 149 UINT streamOffset = 0;
154 streamOffset = offset;
169 &translated->maxIndex, &streamOffset))
171 streamOffset = (offset / gl::ComputeTypeSize(type)) * gl::ComputeTypeSize(destinationIndexType);
174 translated->maxIndex, streamOffset);
205 streamOffset = indexBuffer->mapBuffer(bufferSizeRequired, &output);
206 if (streamOffset == -1 || output == NULL)
224 streamOffset = (offset / gl::ComputeTypeSize(type)) * gl::ComputeTypeSize(destinationIndexType);
226 translated->maxIndex, streamOffset);
233 translated->startIndex = streamOffset / gl::ComputeTypeSize(destinationIndexType)
    [all...]
VertexBuffer.h 130 unsigned int streamOffset;
VertexDataManager.cpp 158 std::size_t streamOffset = -1;
164 streamOffset = attribs[i].mOffset + outputElementSize * start;
169 streamOffset = staticBuffer->lookupAttribute(attribs[i]);
172 if (streamOffset == -1)
178 streamOffset = staticBuffer->storeVertexAttributes(attribs[i], -startIndex, totalCount, 0);
181 if (streamOffset != -1)
183 streamOffset += (attribs[i].mOffset / attribs[i].stride()) * outputElementSize;
187 streamOffset += start * outputElementSize;
194 streamOffset = mStreamingBuffer->storeVertexAttributes(attribs[i], start, count, instances);
197 if (streamOffset == -1
    [all...]

Completed in 361 milliseconds