Lines Matching refs:bufferOut
158 std::vector<GLuint> *bufferOut) in GetLineLoopIndices() argument
164 bufferOut->resize(indexCount); in GetLineLoopIndices()
170 reinterpret_cast<uint8_t *>(bufferOut->data())); in GetLineLoopIndices()
175 reinterpret_cast<uint8_t *>(bufferOut->data())); in GetLineLoopIndices()
180 reinterpret_cast<uint8_t *>(bufferOut->data())); in GetLineLoopIndices()
190 bufferOut->resize(static_cast<size_t>(count) + 1); in GetLineLoopIndices()
196 SetLineLoopIndices(&(*bufferOut)[0], count); in GetLineLoopIndices()
199 CopyLineLoopIndices<GLubyte>(indices, &(*bufferOut)[0], count); in GetLineLoopIndices()
202 CopyLineLoopIndices<GLushort>(indices, &(*bufferOut)[0], count); in GetLineLoopIndices()
205 CopyLineLoopIndices<GLuint>(indices, &(*bufferOut)[0], count); in GetLineLoopIndices()
230 std::vector<GLuint> *bufferOut) in CopyTriangleFanIndicesWithRestart() argument
238 bufferOut->clear(); in CopyTriangleFanIndicesWithRestart()
246 bufferOut->push_back(d3dRestartIndex); in CopyTriangleFanIndicesWithRestart()
262 bufferOut->push_back(vertexA.value()); in CopyTriangleFanIndicesWithRestart()
263 bufferOut->push_back(vertexB.value()); in CopyTriangleFanIndicesWithRestart()
264 bufferOut->push_back(value); in CopyTriangleFanIndicesWithRestart()
275 std::vector<GLuint> *bufferOut) in GetTriFanIndices() argument
282 CopyTriangleFanIndicesWithRestart<GLubyte>(indices, count, indexType, bufferOut); in GetTriFanIndices()
285 CopyTriangleFanIndicesWithRestart<GLushort>(indices, count, indexType, bufferOut); in GetTriFanIndices()
288 CopyTriangleFanIndicesWithRestart<GLuint>(indices, count, indexType, bufferOut); in GetTriFanIndices()
299 bufferOut->resize(numTris * 3); in GetTriFanIndices()
305 SetTriangleFanIndices(&(*bufferOut)[0], numTris); in GetTriFanIndices()
308 CopyTriangleFanIndices<GLubyte>(indices, &(*bufferOut)[0], numTris); in GetTriFanIndices()
311 CopyTriangleFanIndices<GLushort>(indices, &(*bufferOut)[0], numTris); in GetTriFanIndices()
314 CopyTriangleFanIndices<GLuint>(indices, &(*bufferOut)[0], numTris); in GetTriFanIndices()
4016 angle::MemoryBuffer **bufferOut) in getScratchMemoryBuffer() argument
4018 ANGLE_CHECK_GL_ALLOC(context11, mScratchMemoryBuffer.get(requestedSize, bufferOut)); in getScratchMemoryBuffer()