gitextract_a32ni6ry/ ├── .gitignore ├── CMake/ │ └── OutOfSourceBuild.cmake ├── CMakeLists.txt ├── LICENSE ├── README.md ├── build_tests_unix.sh ├── build_tests_vs.bat ├── include/ │ ├── m_dist.h │ ├── m_image.h │ ├── m_math.h │ ├── m_path_finding.h │ └── m_raster.h └── tests/ ├── 3rdparty/ │ ├── CMakeLists.txt │ ├── glfw/ │ │ ├── CMakeLists.txt │ │ ├── COPYING.txt │ │ ├── deps/ │ │ │ ├── EGL/ │ │ │ │ └── eglext.h │ │ │ ├── GL/ │ │ │ │ ├── glext.h │ │ │ │ ├── glxext.h │ │ │ │ └── wglext.h │ │ │ ├── getopt.c │ │ │ ├── getopt.h │ │ │ ├── tinycthread.c │ │ │ └── tinycthread.h │ │ ├── include/ │ │ │ └── GLFW/ │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ │ └── src/ │ │ ├── CMakeLists.txt │ │ ├── clipboard.c │ │ ├── cocoa_clipboard.m │ │ ├── cocoa_gamma.c │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_window.m │ │ ├── config.h │ │ ├── config.h.in │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_platform.h │ │ ├── gamma.c │ │ ├── glfw3.pc.in │ │ ├── glfwConfig.cmake.in │ │ ├── glfwConfigVersion.cmake.in │ │ ├── glx_context.c │ │ ├── glx_platform.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── joystick.c │ │ ├── monitor.c │ │ ├── nsgl_context.m │ │ ├── nsgl_platform.h │ │ ├── time.c │ │ ├── wgl_context.c │ │ ├── wgl_platform.h │ │ ├── win32_clipboard.c │ │ ├── win32_gamma.c │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_time.c │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── x11_clipboard.c │ │ ├── x11_gamma.c │ │ ├── x11_init.c │ │ ├── x11_joystick.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_time.c │ │ ├── x11_unicode.c │ │ └── x11_window.c │ ├── stb/ │ │ └── stb_image.h │ └── tinycthread/ │ ├── CMakeLists.txt │ ├── README.txt │ └── source/ │ ├── tinycthread.c │ └── tinycthread.h ├── dataset/ │ └── lena.tga ├── raster/ │ ├── CMakeLists.txt │ └── main.c ├── raytracing/ │ ├── CMakeLists.txt │ └── main.c ├── test.h ├── vorogen/ │ ├── CMakeLists.txt │ └── main.c └── voronoi/ ├── CMakeLists.txt └── main.c