| 4077 | |
| 4078 | |
| 4079 | void Viewer::FileDropCallback(GLFWwindow* window, int count, const char** files) |
| 4080 | { |
| 4081 | if (count < 1) |
| 4082 | return; |
| 4083 | |
| 4084 | tString file = tString(files[0]); |
| 4085 | ImageToLoad = file; |
| 4086 | PopulateImages(); |
| 4087 | SetCurrentImage(file); |
| 4088 | } |
| 4089 | |
| 4090 | |
| 4091 | void Viewer::FocusCallback(GLFWwindow* window, int gotFocus) |
nothing calls this directly
no outgoing calls
no test coverage detected