Skip to content

Update glfw3windowbackend.cpp #78

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: glfw3
Choose a base branch
from
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