├── examples ├── glfw.rc ├── glfw.icns ├── glfw.ico ├── windows.c ├── CMakeLists.txt ├── offscreen.c ├── triangle-opengl.c ├── triangle-opengles.c └── sharing.c ├── CMake ├── glfw3Config.cmake.in ├── glfw3.pc.in ├── modules │ ├── FindOSMesa.cmake │ └── FindEpollShim.cmake ├── i686-w64-mingw32.cmake ├── i686-w64-mingw32-clang.cmake ├── x86_64-w64-mingw32.cmake ├── x86_64-w64-mingw32-clang.cmake ├── cmake_uninstall.cmake.in ├── Info.plist.in └── GenerateMappings.cmake ├── docs ├── footer.html ├── SUPPORT.md ├── header.html ├── CMakeLists.txt ├── main.dox ├── DoxygenLayout.xml ├── extra.css.map ├── internal.dox └── extra.css ├── .github ├── CODEOWNERS └── workflows │ └── build.yml ├── .mailmap ├── src ├── glfw.rc.in ├── xkb_unicode.h ├── cocoa_time.h ├── null_joystick.h ├── posix_poll.h ├── win32_time.h ├── posix_time.h ├── posix_thread.h ├── win32_thread.h ├── cocoa_joystick.h ├── win32_joystick.h ├── null_joystick.c ├── win32_module.c ├── posix_module.c ├── cocoa_time.c ├── win32_time.c ├── linux_joystick.h ├── posix_time.c ├── posix_poll.c ├── win32_thread.c ├── posix_thread.c ├── mappings.h.in ├── null_monitor.c ├── platform.c ├── platform.h └── win32_polyfill.c ├── LICENSE.md ├── deps ├── getopt.h └── mingw │ └── _mingw_dxhelper.h ├── tests ├── title.c ├── timeout.c ├── empty.c ├── CMakeLists.txt ├── clipboard.c ├── icon.c ├── allocator.c ├── threads.c ├── gamma.c ├── msaa.c └── reopen.c ├── CONTRIBUTORS.md └── CMakeLists.txt /examples/glfw.rc: -------------------------------------------------------------------------------- 1 | 2 | GLFW_ICON ICON "glfw.ico" 3 | 4 | -------------------------------------------------------------------------------- /examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/glfw/master/examples/glfw.icns -------------------------------------------------------------------------------- /examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/glfw/master/examples/glfw.ico -------------------------------------------------------------------------------- /CMake/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include(CMakeFindDependencyMacro) 2 | find_dependency(Threads) 3 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 4 | -------------------------------------------------------------------------------- /docs/footer.html: -------------------------------------------------------------------------------- 1 |
2 |3 | Last update on $date for $projectname $projectnumber 4 |
5 | 6 |