| 845 | } |
| 846 | |
| 847 | void GFXDevice::popActiveRenderTarget() |
| 848 | { |
| 849 | AssertFatal( mRTStack.size() > 0, "GFXDevice::popActiveRenderTarget() - stack is empty!" ); |
| 850 | |
| 851 | // Restore the last item on the stack and pop. |
| 852 | setActiveRenderTarget( mRTStack.last() ); |
| 853 | mRTStack.pop_back(); |
| 854 | } |
| 855 | |
| 856 | void GFXDevice::setActiveRenderTarget( GFXTarget *target, bool updateViewport ) |
| 857 | { |
no test coverage detected