Lines Matching defs:matrix_stack_t
444 struct matrix_stack_t { struct
445 enum {
449 transform_t transform;
450 uint8_t maxDepth;
451 uint8_t depth;
452 uint8_t dirty;
453 uint8_t reserved;
454 matrixf_t *stack;
455 uint8_t *ops;
468 matrixf_t& top() { return stack[depth]; } in top()
469 const matrixf_t& top() const { return stack[depth]; } in top()
470 uint32_t top_ops() const { return ops[depth]; } in top_ops()
494 matrix_stack_t *current; argument