• Home
  • Raw
  • Download

Lines Matching refs:indices

770         GLsizei count, const GLvoid *indices)  in drawIndexedPrimitivesPoints()  argument
776 vertex_t * v = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesPoints()
787 GLsizei count, const GLvoid *indices) in drawIndexedPrimitivesLineStrip() argument
797 c->arrays.compileElement(c, v0, read_index(type, indices)); in drawIndexedPrimitivesLineStrip()
800 v1 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesLineStrip()
812 GLsizei count, const GLvoid *indices) in drawIndexedPrimitivesLineLoop() argument
815 drawIndexedPrimitivesLines(c, count, indices); in drawIndexedPrimitivesLineLoop()
824 c->arrays.compileElement(c, v0, read_index(type, indices)); in drawIndexedPrimitivesLineLoop()
827 v1 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesLineLoop()
844 GLsizei count, const GLvoid *indices) in drawIndexedPrimitivesLines() argument
852 vertex_t* const v0 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesLines()
853 vertex_t* const v1 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesLines()
866 GLsizei count, const GLvoid *indices, int winding) in drawIndexedPrimitivesTriangleFanOrStrip() argument
880 c->arrays.compileElement(c, v0, read_index(type, indices)); in drawIndexedPrimitivesTriangleFanOrStrip()
881 c->arrays.compileElement(c, v1, read_index(type, indices)); in drawIndexedPrimitivesTriangleFanOrStrip()
888 v2 = fetch_vertex(c, read_index(type, indices)); in drawIndexedPrimitivesTriangleFanOrStrip()
902 GLsizei count, const GLvoid *indices) { in drawIndexedPrimitivesTriangleStrip() argument
903 drawIndexedPrimitivesTriangleFanOrStrip(c, count, indices, 1); in drawIndexedPrimitivesTriangleStrip()
907 GLsizei count, const GLvoid *indices) { in drawIndexedPrimitivesTriangleFan() argument
908 drawIndexedPrimitivesTriangleFanOrStrip(c, count, indices, 2); in drawIndexedPrimitivesTriangleFan()
912 GLsizei count, const GLvoid *indices) in drawIndexedPrimitivesTriangles() argument
920 uint16_t const * p = (uint16_t const *)indices; in drawIndexedPrimitivesTriangles()
934 uint8_t const * p = (uint8_t const *)indices; in drawIndexedPrimitivesTriangles()
1395 GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) in glDrawElements() argument
1436 indices = c->arrays.element_array_buffer->data + uintptr_t(indices); in glDrawElements()
1443 drawElementsPrims[mode](c, count, indices); in glDrawElements()