| 428 | } |
| 429 | |
| 430 | WindowRef AppImplAndroid::getWindowIndex( size_t index ) const |
| 431 | { |
| 432 | if( index >= mWindows.size() ) |
| 433 | return cinder::app::WindowRef(); |
| 434 | |
| 435 | auto winIt = mWindows.begin(); |
| 436 | std::advance( winIt, index ); |
| 437 | return (*winIt)->mWindowRef; |
| 438 | } |
| 439 | |
| 440 | WindowRef AppImplAndroid::getForegroundWindow() const |
| 441 | { |