MCPcopy Create free account
hub / github.com/cinder/Cinder / getWindowIndex

Method getWindowIndex

src/cinder/app/android/AppImplAndroid.cpp:430–438  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

428}
429
430WindowRef 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
440WindowRef AppImplAndroid::getForegroundWindow() const
441{

Callers

nothing calls this directly

Calls 3

advanceFunction · 0.50
sizeMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected