Lines Matching defs:mode
260 GLenum mode;
277 const GLenum mode = cmd->mode;
284 (mode, first, count, instance_count,
290 draw_arrays_async(struct gl_context *ctx, GLenum mode, GLint first,
297 cmd->mode = mode;
308 GLenum mode;
326 const GLenum mode = cmd->mode;
342 (mode, first, count, instance_count,
354 draw_arrays_async_user(struct gl_context *ctx, GLenum mode, GLint first,
366 cmd->mode = mode;
378 draw_arrays(GLenum mode, GLint first, GLsizei count, GLsizei instance_count,
389 CALL_DrawArrays(ctx->CurrentServerDispatch, (mode, first, count));
400 draw_arrays_async(ctx, mode, first, count, instance_count, baseinstance);
411 (mode, first, count, instance_count,
416 draw_arrays_async_user(ctx, mode, first, count, instance_count, baseinstance,
423 GLenum mode;
433 const GLenum mode = cmd->mode;
452 (mode, first, count, draw_count));
463 multi_draw_arrays_async(struct gl_context *ctx, GLenum mode,
482 cmd->mode = mode;
500 _mesa_marshal_MultiDrawArrays(GLenum mode, const GLint *first,
513 multi_draw_arrays_async(ctx, mode, first, count, draw_count, 0, NULL)) {
530 multi_draw_arrays_async(ctx, mode, first, count, draw_count, 0, NULL);
543 multi_draw_arrays_async(ctx, mode, first, count, draw_count, 0, NULL);
553 multi_draw_arrays_async(ctx, mode, first, count, draw_count,
560 (mode, first, count, draw_count));
569 GLenum mode;
589 const GLenum mode = cmd->mode;
598 (mode, count, type, indices,
607 GLenum mode;
621 const GLenum mode = cmd->mode;
630 (mode, min_index, max_index, count,
636 draw_elements_async(struct gl_context *ctx, GLenum mode, GLsizei count,
646 cmd->mode = mode;
658 cmd->mode = mode;
672 GLenum mode;
696 const GLenum mode = cmd->mode;
722 (mode, min_index, max_index, count,
726 (mode, count, type, indices,
743 draw_elements_async_user(struct gl_context *ctx, GLenum mode, GLsizei count,
757 cmd->mode = mode;
775 draw_elements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices,
798 draw_elements_async(ctx, mode, count, type, indices, instance_count,
850 draw_elements_async_user(ctx, mode, count, type, indices, instance_count,
863 (mode, count, type, indices, basevertex));
866 (mode, min_index, max_index, count, type, indices));
868 CALL_DrawElements(ctx->CurrentServerDispatch, (mode, count, type, indices));
872 (mode, min_index, max_index, count,
876 (mode, count, type, indices,
886 GLenum mode;
898 const GLenum mode = cmd->mode;
930 (mode, count, type, indices, draw_count,
934 (mode, count, type, indices, draw_count));
949 multi_draw_elements_async(struct gl_context *ctx, GLenum mode,
971 cmd->mode = mode;
996 _mesa_marshal_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count,
1016 if (multi_draw_elements_async(ctx, mode, count, type, indices,
1050 multi_draw_elements_async(ctx, mode, count, type, indices, draw_count,
1075 multi_draw_elements_async(ctx, mode, count, type, indices, draw_count,
1091 multi_draw_elements_async(ctx, mode, count, type, indices, draw_count,
1103 multi_draw_elements_async(ctx, mode, count, type, indices, draw_count,
1128 multi_draw_elements_async(ctx, mode, count, type, indices, draw_count,
1138 (mode, count, type, indices, draw_count,
1142 (mode, count, type, indices, draw_count));
1147 _mesa_marshal_DrawArrays(GLenum mode, GLint first, GLsizei count)
1149 draw_arrays(mode, first, count, 1, 0, true);
1153 _mesa_marshal_DrawArraysInstancedARB(GLenum mode, GLint first, GLsizei count,
1156 draw_arrays(mode, first, count, instance_count, 0, false);
1160 _mesa_marshal_DrawArraysInstancedBaseInstance(GLenum mode, GLint first,
1164 draw_arrays(mode, first, count, instance_count, baseinstance, false);
1168 _mesa_marshal_DrawElements(GLenum mode, GLsizei count, GLenum type,
1171 draw_elements(mode, count, type, indices, 1, 0, 0, false, 0, 0, true);
1175 _mesa_marshal_DrawRangeElements(GLenum mode, GLuint start, GLuint end,
1179 draw_elements(mode, count, type, indices, 1, 0, 0, true, start, end, true);
1183 _mesa_marshal_DrawElementsInstancedARB(GLenum mode, GLsizei count, GLenum type,
1186 draw_elements(mode, count, type, indices, instance_count, 0, 0, false, 0, 0, false);
1190 _mesa_marshal_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type,
1193 draw_elements(mode, count, type, indices, 1, basevertex, 0, false, 0, 0, true);
1197 _mesa_marshal_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end,
1201 draw_elements(mode, count, type, indices, 1, basevertex, 0, true, start, end, false);
1205 _mesa_marshal_DrawElementsInstancedBaseVertex(GLenum mode, GLsizei count,
1209 draw_elements(mode, count, type, indices, instance_count, basevertex, 0, false, 0, 0, false);
1213 _mesa_marshal_DrawElementsInstancedBaseInstance(GLenum mode, GLsizei count,
1217 draw_elements(mode, count, type, indices, instance_count, 0, baseinstance, false, 0, 0, false);
1221 _mesa_marshal_DrawElementsInstancedBaseVertexBaseInstance(GLenum mode, GLsizei count,
1226 draw_elements(mode, count, type, indices, instance_count, basevertex, baseinstance, false, 0, 0, false);
1230 _mesa_marshal_MultiDrawElementsEXT(GLenum mode, const GLsizei *count,
1234 _mesa_marshal_MultiDrawElementsBaseVertex(mode, count, type, indices,