| 843 | } |
| 844 | |
| 845 | void MacWindow::CheckForResize(float width, float height) |
| 846 | { |
| 847 | const Float2 clientSize(width, height); |
| 848 | if (clientSize != _clientSize) |
| 849 | { |
| 850 | _clientSize = clientSize; |
| 851 | OnResize(width, height); |
| 852 | } |
| 853 | } |
| 854 | |
| 855 | void MacWindow::SetIsMouseOver(bool value) |
| 856 | { |