Home | History | Annotate | Download | only in main

Lines Matching refs:ListExt

607    ctx->ListExt->Opcode[i].Destroy(ctx, &node[1]);
608 step = ctx->ListExt->Opcode[i].Size;
619 ctx->ListExt->Opcode[i].Execute(ctx, &node[1]);
620 step = ctx->ListExt->Opcode[i].Size;
631 ctx->ListExt->Opcode[i].Print(ctx, &node[1]);
632 step = ctx->ListExt->Opcode[i].Size;
1055 if (ctx->ListExt->NumOpcodes < MAX_DLIST_EXT_OPCODES) {
1056 const GLuint i = ctx->ListExt->NumOpcodes++;
1057 ctx->ListExt->Opcode[i].Size =
1059 ctx->ListExt->Opcode[i].Execute = execute;
1060 ctx->ListExt->Opcode[i].Destroy = destroy;
1061 ctx->ListExt->Opcode[i].Print = print;
11097 ctx->ListExt = CALLOC_STRUCT(gl_list_extensions);
11118 free(ctx->ListExt);
11119 ctx->ListExt = NULL;