Lines Matching defs:programs
1463 /* Next safe_mul(n, 1 * sizeof(GLuint)) bytes are GLuint programs[n] */
1469 GLuint * programs;
1471 programs = (GLuint *) variable_data;
1472 CALL_DeleteProgramsARB(ctx->CurrentServerDispatch, (n, programs));
1476 _mesa_marshal_DeleteProgramsARB(GLsizei n, const GLuint * programs)
1482 if (unlikely(programs_size < 0 || (programs_size > 0 && !programs) || (unsigned)cmd_size > MARSHAL_MAX_CMD_SIZE)) {
1484 CALL_DeleteProgramsARB(ctx->CurrentServerDispatch, (n, programs));
1490 memcpy(variable_data, programs, programs_size);
1496 _mesa_marshal_GenProgramsARB(GLsizei n, GLuint * programs)
1500 CALL_GenProgramsARB(ctx->CurrentServerDispatch, (n, programs));