citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit fde43ef7ffb928b0fd2b81ac343400d6584bf3b6
parent 06da48ae5728c29d29c7fb53aa0f5c865d44d284
Author: Kyle Milz <kyle@0x30.net>
Date:   Thu, 15 Dec 2016 21:29:59 -0700

src: remove unused functions

Diffstat:
Msrc/gl_main.cc | 29-----------------------------
1 file changed, 0 insertions(+), 29 deletions(-)

diff --git a/src/gl_main.cc b/src/gl_main.cc @@ -15,40 +15,11 @@ View *static_vu; void -reshape_func(int width, int height) -{ - static_vu->reshape_func(width, height); -} - -void keyboard_func(GLFWwindow *window, int key, int scancode, int action, int mods) { static_vu->keyboard_func(window, key, scancode, action, mods); } -void -special_func(int key, int x, int y) -{ - static_vu->special_func(key, x, y); -} - -void -mouse_func(int button, int state, int x, int y) -{ - static_vu->mouse_func(button, state, x, y); -} - -void -motion_func(int x, int y) -{ - static_vu->motion_func(x, y); -} - -void -next_frame(View *vu, demo_font_t *font) -{ -} - static void error_callback(int error, const char *desc) {