Home
last modified time | relevance | path

Searched refs:glPrimType (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/gpu/gl/
DGrGLGpu.cpp2576 const GrGLenum glPrimType = gr_primitive_type_to_gl_mode(primitiveType); in sendMeshToGpu() local
2579 GL_CALL(DrawArrays(glPrimType, 0, vertexCount)); in sendMeshToGpu()
2582 GL_CALL(DrawArrays(glPrimType, baseVertex, vertexCount)); in sendMeshToGpu()
2592 const GrGLenum glPrimType = gr_primitive_type_to_gl_mode(primitiveType); in sendIndexedMeshToGpu() local
2599 GL_CALL(DrawRangeElements(glPrimType, minIndexValue, maxIndexValue, indexCount, in sendIndexedMeshToGpu()
2602 GL_CALL(DrawElements(glPrimType, indexCount, GR_GL_UNSIGNED_SHORT, indices)); in sendIndexedMeshToGpu()
2612 const GrGLenum glPrimType = gr_primitive_type_to_gl_mode(primitiveType); in sendInstancedMeshToGpu() local
2614 GL_CALL(DrawArraysInstanced(glPrimType, baseVertex, vertexCount, instanceCount)); in sendInstancedMeshToGpu()
2624 const GrGLenum glPrimType = gr_primitive_type_to_gl_mode(primitiveType); in sendIndexedInstancedMeshToGpu() local
2629 GL_CALL(DrawElementsInstanced(glPrimType, indexCount, GR_GL_UNSIGNED_SHORT, indices, in sendIndexedInstancedMeshToGpu()