├── examples ├── glfw.ico ├── glfw.icns ├── glfw.rc ├── CMakeLists.txt └── simple.c ├── src ├── glfw3Config.cmake.in ├── glfw3.pc.in ├── xkb_unicode.h ├── posix_time.h ├── posix_tls.h ├── cocoa_joystick.h ├── cocoa_time.c ├── nsgl_context.h ├── linux_joystick.h ├── win32_joystick.h ├── posix_tls.c ├── win32_tls.c ├── win32_time.c ├── posix_time.c ├── glfw_config.h.in ├── mir_platform.h ├── cocoa_platform.h ├── CMakeLists.txt ├── init.c ├── mir_monitor.c ├── wl_platform.h └── wgl_context.h ├── docs ├── footer.html ├── CMakeLists.txt ├── header.html ├── main.dox ├── internal.dox ├── extra.css ├── DoxygenLayout.xml ├── monitor.dox └── vulkan.dox ├── CMake ├── modules │ ├── FindMir.cmake │ ├── FindWaylandProtocols.cmake │ ├── FindXKBCommon.cmake │ └── FindVulkan.cmake ├── i586-mingw32msvc.cmake ├── amd64-mingw32msvc.cmake ├── i686-w64-mingw32.cmake ├── i686-pc-mingw32.cmake ├── x86_64-w64-mingw32.cmake └── MacOSXBundleInfo.plist.in ├── .appveyor.yml ├── .travis.yml ├── COPYING.txt ├── cmake_uninstall.cmake.in ├── .gitignore ├── deps ├── getopt.h ├── mingw │ └── _mingw_dxhelper.h └── vulkan │ └── vk_platform.h └── tests ├── title.c ├── timeout.c ├── CMakeLists.txt ├── empty.c ├── threads.c ├── icon.c ├── clipboard.c ├── windows.c ├── msaa.c ├── gamma.c ├── sharing.c ├── reopen.c ├── tearing.c ├── joysticks.c └── monitors.c /examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/glfw/master/examples/glfw.ico -------------------------------------------------------------------------------- /examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/glfw/master/examples/glfw.icns -------------------------------------------------------------------------------- /examples/glfw.rc: -------------------------------------------------------------------------------- 1 | 2 | GLFW_ICON ICON "glfw.ico" 3 | 4 | -------------------------------------------------------------------------------- /src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /docs/footer.html: -------------------------------------------------------------------------------- 1 |
2 |3 | Last update on $date for $projectname $projectnumber 4 |
5 | 6 |