Advertisement
pauldacheez

TWELVE LINES OF GLFW ERROR

Dec 17th, 2012
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. /Users/Paul/Desktop/code/gekko/gekko-gc-emu/src/gekko/src/emuwindow/emuwindow_glfw.cpp:64:5: error: no matching function for call to 'glfwSetKeyCallback'
  2. glfwSetKeyCallback(OnKeyEvent);
  3. ^~~~~~~~~~~~~~~~~~
  4. /usr/local/include/GL/glfw3.h:565:14: note: candidate function not viable: requires 2 arguments, but 1 was provided
  5. GLFWAPI void glfwSetKeyCallback(GLFWwindow window, GLFWkeyfun cbfun);
  6. ^
  7. /Users/Paul/Desktop/code/gekko/gekko-gc-emu/src/gekko/src/emuwindow/emuwindow_glfw.cpp:65:5: error: no matching function for call to 'glfwSetWindowSizeCallback'
  8. glfwSetWindowSizeCallback(OnWindowSizeEvent);
  9. ^~~~~~~~~~~~~~~~~~~~~~~~~
  10. /usr/local/include/GL/glfw3.h:547:14: note: candidate function not viable: requires 2 arguments, but 1 was provided
  11. GLFWAPI void glfwSetWindowSizeCallback(GLFWwindow window, GLFWwindowsizefun cbfun);
  12. ^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement