| 537 | } |
| 538 | |
| 539 | void Tr2Sprite2dScene::PushTransformAbsolute() |
| 540 | { |
| 541 | TransformStackEntry entry; |
| 542 | entry.isTranslationOnly = true; |
| 543 | entry.isTranslationOnlySet = true; |
| 544 | entry.translation = Vector2( 0.0f, 0.0f ); |
| 545 | |
| 546 | m_transformStack->push_back( entry ); |
| 547 | } |
| 548 | |
| 549 | void Tr2Sprite2dScene::PopTransformAbsolute() |
| 550 | { |
no outgoing calls
no test coverage detected