Home | History | Annotate | Download | only in gen

Lines Matching defs:arrays

2761    /* Next safe_mul(n, 1 * sizeof(GLuint)) bytes are GLuint arrays[n] */
2767 GLuint * arrays;
2769 arrays = (GLuint *) variable_data;
2770 CALL_DeleteVertexArrays(ctx->CurrentServerDispatch, (n, arrays));
2774 _mesa_marshal_DeleteVertexArrays(GLsizei n, const GLuint * arrays)
2780 if (unlikely(arrays_size < 0 || (arrays_size > 0 && !arrays) || (unsigned)cmd_size > MARSHAL_MAX_CMD_SIZE)) {
2782 CALL_DeleteVertexArrays(ctx->CurrentServerDispatch, (n, arrays));
2783 if (COMPAT) _mesa_glthread_DeleteVertexArrays(ctx, n, arrays);
2789 memcpy(variable_data, arrays, arrays_size);
2790 if (COMPAT) _mesa_glthread_DeleteVertexArrays(ctx, n, arrays);
2796 _mesa_marshal_GenVertexArrays(GLsizei n, GLuint * arrays)
2800 CALL_GenVertexArrays(ctx->CurrentServerDispatch, (n, arrays));
2801 if (COMPAT) _mesa_glthread_GenVertexArrays(ctx, n, arrays);