Lines Matching refs:primcount

1196 …2Encoder::sendVertexAttributes(GLint first, GLsizei count, bool hasClientArrays, GLsizei primcount)  in sendVertexAttributes()  argument
1224 if (firstIndex && divisor && !primcount) { in sendVertexAttributes()
1236 int actual_count = std::max(1, (int)((primcount + divisor - 1) / divisor)); in sendVertexAttributes()
1264 int actual_count = std::max(1, (int)((primcount + divisor - 1) / divisor)); in sendVertexAttributes()
4127 …::s_glDrawArraysInstanced(void* self, GLenum mode, GLint first, GLsizei count, GLsizei primcount) { in s_glDrawArraysInstanced() argument
4132 SET_ERROR_IF(primcount < 0, GL_INVALID_VALUE); in s_glDrawArraysInstanced()
4142 ctx->sendVertexAttributes(first, count, true, primcount); in s_glDrawArraysInstanced()
4143 ctx->m_glDrawArraysInstanced_enc(ctx, mode, 0, count, primcount); in s_glDrawArraysInstanced()
4145 ctx->sendVertexAttributes(0, count, false, primcount); in s_glDrawArraysInstanced()
4146 ctx->m_glDrawArraysInstanced_enc(ctx, mode, first, count, primcount); in s_glDrawArraysInstanced()
4151 …tanced(void* self, GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount) in s_glDrawElementsInstanced() argument
4158 SET_ERROR_IF(primcount < 0, GL_INVALID_VALUE); in s_glDrawElementsInstanced()
4210 ctx->sendVertexAttributes(0, maxIndex + 1, false, primcount); in s_glDrawElementsInstanced()
4212 ctx->glDrawElementsInstancedOffsetAEMU(ctx, mode, count, type, offset, primcount); in s_glDrawElementsInstanced()
4227 ctx->sendVertexAttributes(minIndex, maxIndex - minIndex + 1, true, primcount); in s_glDrawElementsInstanced()
4228 …ctx->glDrawElementsInstancedDataAEMU(ctx, mode, count, type, adjustedIndices, primcount, count * g… in s_glDrawElementsInstanced()