| 206 | } |
| 207 | |
| 208 | WindowRef AppImplLinux::getWindowIndex( size_t index ) const |
| 209 | { |
| 210 | if( index >= mWindows.size() ) { |
| 211 | return cinder::app::WindowRef(); |
| 212 | } |
| 213 | |
| 214 | auto winIt = mWindows.begin(); |
| 215 | std::advance( winIt, index ); |
| 216 | return (*winIt)->mWindowRef; |
| 217 | } |
| 218 | |
| 219 | WindowRef AppImplLinux::getForegroundWindow() const |
| 220 | { |