| 441 | } |
| 442 | |
| 443 | void iOSWindow::CheckForResize(float width, float height) |
| 444 | { |
| 445 | const Float2 clientSize(width, height); |
| 446 | if (clientSize != _clientSize) |
| 447 | { |
| 448 | _clientSize = clientSize; |
| 449 | OnResize(width, height); |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | void* iOSWindow::GetNativePtr() const |
| 454 | { |