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