Lines Matching defs:opcode
812 if (n[0].opcode == OPCODE_BITMAP) {
814 if (n[0].opcode == OPCODE_END_OF_LIST)
828 return n[0].opcode == OPCODE_END_OF_LIST;
939 assert(n[0].opcode == OPCODE_BITMAP);
1031 assert(n[0].opcode == OPCODE_BITMAP ||
1032 n[0].opcode == OPCODE_END_OF_LIST);
1034 if (n[0].opcode == OPCODE_BITMAP) {
1080 dlist->Head[0].opcode = OPCODE_END_OF_LIST;
1114 const OpCode opcode = n[0].opcode;
1116 switch (opcode) {
1492 * Allocate space for a display list instruction (opcode + payload space).
1493 * \param opcode the instruction opcode (OPCODE_* value)
1494 * \param bytes instruction payload size (not counting opcode)
1500 dlist_alloc(struct gl_context *ctx, OpCode opcode, GLuint bytes, bool align8)
1520 n[0].opcode = OPCODE_CONTINUE;
1538 n[0].opcode = opcode;
1565 * an array of Nodes where node[0] holds the opcode, node[1] is the first
1568 * \param opcode one of OPCODE_x
1573 alloc_instruction(struct gl_context *ctx, OpCode opcode, GLuint nparams)
1575 return dlist_alloc(ctx, opcode, nparams * sizeof(Node), false);
3134 save_LogicOp(GLenum opcode)
3141 n[1].e = opcode;
3144 CALL_LogicOp(ctx->Exec, (opcode));
11142 const OpCode opcode = n[0].opcode;
11144 switch (opcode) {
13341 snprintf(msg, sizeof(msg), "Error in execute_list: opcode=%d",
13342 (int) opcode);
13523 * Walk all the opcode from a given list, recursively if OPCODE_CALL_LIST(S) is used,
13531 const OpCode opcode = n[0].opcode;
13532 switch (opcode) {
13535 n[0].opcode = OPCODE_VERTEX_LIST_LOOPBACK;
13698 assert (ctx->Shared->small_dlist_store.ptr[start + list->CurrentList->count - 1].opcode == OPCODE_END_OF_LIST);
14038 const OpCode opcode = n[0].opcode;
14040 switch (opcode) {
14284 vbo_print_vertex_list(ctx, (struct vbo_save_vertex_list *) &n[0], opcode, f);
14287 if (opcode < 0 || opcode > OPCODE_END_OF_LIST) {
14289 ("ERROR IN DISPLAY LIST: opcode = %d, address = %p\n",
14290 opcode, (void *) n);
14292 fprintf(f, "command %d, %u operands\n", opcode,
14325 const OpCode opcode = n[0].opcode;
14327 switch (opcode) {
14400 const OpCode opcode = n[0].opcode;
14402 switch (opcode) {