Skip to content

Commit

Permalink
comment out debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenmothersele committed Jun 7, 2016
1 parent a8ba91e commit e787751
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/openFrameworks/app/ofAppGLFWWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1030,14 +1030,14 @@ void ofAppGLFWWindow::error_cb(int errorCode, const char* errorDescription){
void ofAppGLFWWindow::keyboard_cb(GLFWwindow* windowP_, int keycode, int scancode, unsigned int codepoint, int action, int mods) {
//cout << action << ":" << GLFW_PRESS << "-w!" << keycode << endl;

cout << "GLFW_PRESS = " << GLFW_PRESS << endl;
cout << "GLFW_REPEAT = " << GLFW_REPEAT << endl;
cout << "GLFW_RELEASE = " << GLFW_RELEASE << endl;
cout << "key = " << keycode << endl;
cout << "scancode = " << scancode << endl;
cout << "codepoint = " << codepoint << endl;
cout << "action = " << action << endl;
cout << "mods = " << mods << endl;
// cout << "GLFW_PRESS = " << GLFW_PRESS << endl;
// cout << "GLFW_REPEAT = " << GLFW_REPEAT << endl;
// cout << "GLFW_RELEASE = " << GLFW_RELEASE << endl;
// cout << "key = " << keycode << endl;
// cout << "scancode = " << scancode << endl;
// cout << "codepoint = " << codepoint << endl;
// cout << "action = " << action << endl;
// cout << "mods = " << mods << endl;

int key;
switch (keycode) {
Expand Down

0 comments on commit e787751

Please sign in to comment.