Lines Matching refs:indices
765 GLsizei count, const GLvoid *indices) in drawIndexedPrimitivesPoints() argument
771 vertex_t * v = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesPoints()
782 GLsizei count, const GLvoid *indices) in drawIndexedPrimitivesLineStrip() argument
792 c->arrays.compileElement(c, v0, read_index(type, indices)); in drawIndexedPrimitivesLineStrip()
795 v1 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesLineStrip()
807 GLsizei count, const GLvoid *indices) in drawIndexedPrimitivesLineLoop() argument
810 drawIndexedPrimitivesLines(c, count, indices); in drawIndexedPrimitivesLineLoop()
819 c->arrays.compileElement(c, v0, read_index(type, indices)); in drawIndexedPrimitivesLineLoop()
822 v1 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesLineLoop()
839 GLsizei count, const GLvoid *indices) in drawIndexedPrimitivesLines() argument
847 vertex_t* const v0 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesLines()
848 vertex_t* const v1 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesLines()
861 GLsizei count, const GLvoid *indices, int winding) in drawIndexedPrimitivesTriangleFanOrStrip() argument
875 c->arrays.compileElement(c, v0, read_index(type, indices)); in drawIndexedPrimitivesTriangleFanOrStrip()
876 c->arrays.compileElement(c, v1, read_index(type, indices)); in drawIndexedPrimitivesTriangleFanOrStrip()
883 v2 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesTriangleFanOrStrip()
897 GLsizei count, const GLvoid *indices) { in drawIndexedPrimitivesTriangleStrip() argument
898 drawIndexedPrimitivesTriangleFanOrStrip(c, count, indices, 1); in drawIndexedPrimitivesTriangleStrip()
902 GLsizei count, const GLvoid *indices) { in drawIndexedPrimitivesTriangleFan() argument
903 drawIndexedPrimitivesTriangleFanOrStrip(c, count, indices, 2); in drawIndexedPrimitivesTriangleFan()
907 GLsizei count, const GLvoid *indices) in drawIndexedPrimitivesTriangles() argument
915 uint16_t const * p = (uint16_t const *)indices; in drawIndexedPrimitivesTriangles()
929 uint8_t const * p = (uint8_t const *)indices; in drawIndexedPrimitivesTriangles()
1390 GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) in glDrawElements() argument
1431 indices = c->arrays.element_array_buffer->data + uintptr_t(indices); in glDrawElements()
1438 drawElementsPrims[mode](c, count, indices); in glDrawElements()