Home | History | Annotate | Download | only in main

Lines Matching refs:ListExt

908    ctx->ListExt->Opcode[i].Destroy(ctx, &node[1]);
909 step = ctx->ListExt->Opcode[i].Size;
920 ctx->ListExt->Opcode[i].Execute(ctx, &node[1]);
921 step = ctx->ListExt->Opcode[i].Size;
932 ctx->ListExt->Opcode[i].Print(ctx, &node[1], f);
933 step = ctx->ListExt->Opcode[i].Size;
1449 if (ctx->ListExt->NumOpcodes < MAX_DLIST_EXT_OPCODES) {
1450 const GLuint i = ctx->ListExt->NumOpcodes++;
1451 ctx->ListExt->Opcode[i].Size =
1453 ctx->ListExt->Opcode[i].Execute = execute;
1454 ctx->ListExt->Opcode[i].Destroy = destroy;
1455 ctx->ListExt->Opcode[i].Print = print;
10494 ctx->ListExt = CALLOC_STRUCT(gl_list_extensions);
10515 free(ctx->ListExt);
10516 ctx->ListExt = NULL;