| 162 | void sample_gl_debug_ui::on_window_resize(int2 size) {} |
| 163 | |
| 164 | void sample_gl_debug_ui::on_input(const app_input_event & event) |
| 165 | { |
| 166 | int width, height; |
| 167 | glfwGetWindowSize(window, &width, &height); |
| 168 | cam.handle_input(event); |
| 169 | gizmo->handle_input(event); |
| 170 | imgui->update_input(event); |
| 171 | } |
| 172 | |
| 173 | void sample_gl_debug_ui::on_update(const app_update_event & e) |
| 174 | { |
nothing calls this directly
no test coverage detected