| 531 | } |
| 532 | |
| 533 | WindowRef AppImplLinux::getWindowIndex( size_t index ) const |
| 534 | { |
| 535 | if( index >= mWindows.size() ) { |
| 536 | return cinder::app::WindowRef(); |
| 537 | } |
| 538 | |
| 539 | auto winIt = mWindows.begin(); |
| 540 | std::advance( winIt, index ); |
| 541 | return (*winIt)->mWindowRef; |
| 542 | } |
| 543 | |
| 544 | WindowRef AppImplLinux::getForegroundWindow() const |
| 545 | { |