Returns the contentScale of the App's window, which is the multiplier that maps points to pixels
| 310 | Area getWindowBounds() const { return Area( 0, 0, getWindowWidth(), getWindowHeight() ); } |
| 311 | //! Returns the contentScale of the App's window, which is the multiplier that maps points to pixels |
| 312 | float getWindowContentScale() const { return getWindow()->getContentScale(); } |
| 313 | |
| 314 | //! Returns tcoordinates of the top-left corner of the current window measured in points |
| 315 | ivec2 getWindowPos() const { return getWindow()->getPos(); } |