MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / CheckForResize

Method CheckForResize

Source/Engine/Platform/iOS/iOSPlatform.cpp:443–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

441}
442
443void 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
453void* iOSWindow::GetNativePtr() const
454{

Callers 1

iOSPlatform.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected