| 547 | } |
| 548 | |
| 549 | void Tr2Sprite2dScene::PopTransformAbsolute() |
| 550 | { |
| 551 | CCP_ASSERT( !m_transformStack->empty() ); |
| 552 | CCP_ASSERT( m_transformStack->back().isTranslationOnly ); |
| 553 | CCP_ASSERT( m_transformStack->back().isTranslationOnlySet ); |
| 554 | |
| 555 | m_transformStack->pop_back(); |
| 556 | } |
| 557 | |
| 558 | void Tr2Sprite2dScene::PushClipRectangle( float x, float y, float width, float height ) |
| 559 | { |
no test coverage detected