Lines Matching refs:primcount

1322 …2Encoder::sendVertexAttributes(GLint first, GLsizei count, bool hasClientArrays, GLsizei primcount)  in sendVertexAttributes()  argument
1350 if (firstIndex && divisor && !primcount) { in sendVertexAttributes()
1362 int actual_count = std::max(1, (int)((primcount + divisor - 1) / divisor)); in sendVertexAttributes()
1394 int actual_count = std::max(1, (int)((primcount + divisor - 1) / divisor)); in sendVertexAttributes()
4702 …::s_glDrawArraysInstanced(void* self, GLenum mode, GLint first, GLsizei count, GLsizei primcount) { in s_glDrawArraysInstanced() argument
4707 SET_ERROR_IF(primcount < 0, GL_INVALID_VALUE); in s_glDrawArraysInstanced()
4718 ctx->sendVertexAttributes(first, count, true, primcount); in s_glDrawArraysInstanced()
4719 ctx->m_glDrawArraysInstanced_enc(ctx, mode, 0, count, primcount); in s_glDrawArraysInstanced()
4721 ctx->sendVertexAttributes(0, count, false, primcount); in s_glDrawArraysInstanced()
4722 ctx->m_glDrawArraysInstanced_enc(ctx, mode, first, count, primcount); in s_glDrawArraysInstanced()
4728 …tanced(void* self, GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount) in s_glDrawElementsInstanced() argument
4735 SET_ERROR_IF(primcount < 0, GL_INVALID_VALUE); in s_glDrawElementsInstanced()
4788 ctx->sendVertexAttributes(0, maxIndex + 1, false, primcount); in s_glDrawElementsInstanced()
4790 ctx->glDrawElementsInstancedOffsetAEMU(ctx, mode, count, type, offset, primcount); in s_glDrawElementsInstanced()
4805 ctx->sendVertexAttributes(minIndex, maxIndex - minIndex + 1, true, primcount); in s_glDrawElementsInstanced()
4806 …ctx->glDrawElementsInstancedDataAEMU(ctx, mode, count, type, adjustedIndices, primcount, count * g… in s_glDrawElementsInstanced()