Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/ui/glfw3windowbackend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
#include <fea/ui/glfw3windowbackend.hpp>

namespace fea{

int key_press(KeyBoard::Code pkey_code ,bool psystem,bool pcontrol,bool pshift,bool palt )
{
KeyEvent Event;
Event.code =pKey_code;
Event.shift = pshift;
Event.control = pcontrol;
Event.alt = palt;
Event.system = psystem;

return Event;
}

void GLFW3WindowBackend::open(VideoMode mode, const std::string& title, uint32_t style, const ContextSettings& settings)
{
Expand Down