예제 #1
0
파일: gui.cpp 프로젝트: rtmpnewbie/gnash
void
Gui::quit()
{
    // Take a screenshot of the last frame if required.
    if (_screenShotter.get() && _renderer.get()) {
        Display dis(*this, *_stage);
        _screenShotter->last(*_renderer, &dis);
    }
    
    quitUI();
}
예제 #2
0
파일: gui.cpp 프로젝트: o1iver/Code-Backup
void
Gui::quit()
{
    log_debug(__PRETTY_FUNCTION__);

    // Take a screenshot of the last frame if required.
    if (_screenShotter.get()) {
        _screenShotter->last();
    }
    
    quitUI();
}