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

Method WndProc

Source/Engine/Platform/Windows/WindowsInput.cpp:143–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143bool WindowsInput::WndProc(Window* window, Windows::UINT msg, Windows::WPARAM wParam, Windows::LPARAM lParam)
144{
145 if (WindowsInputImpl::Mouse->WndProc(window, msg, wParam, lParam))
146 return true;
147 if (WindowsInputImpl::Keyboard->WndProc(window, msg, wParam, lParam))
148 return true;
149 return false;
150}
151
152bool WindowsKeyboard::WndProc(Window* window, const Windows::UINT msg, Windows::WPARAM wParam, Windows::LPARAM lParam)
153{

Callers 1

WndProcFunction · 0.45

Calls 4

OnKeyDownFunction · 0.85
OnKeyUpFunction · 0.85
ClientToScreenFunction · 0.85
IsRelativeMethod · 0.45

Tested by

no test coverage detected