Lines Matching defs:node
145 * Node for the attribute stack.
185 * Allocate new attribute node of given type/kind. Attach payload data.
1551 struct gl_attrib_node *node, *next;
1562 node = ctx->ClientAttribStack[ctx->ClientAttribStackDepth];
1564 while (node) {
1565 switch (node->kind) {
1569 (struct gl_pixelstore_attrib *) node->data;
1578 (struct gl_pixelstore_attrib *) node->data;
1586 (struct gl_array_attrib *) node->data;
1597 next = node->next;
1598 FREE( node->data );
1599 FREE( node );
1600 node = next;