├── .github └── workflows │ └── build.yml ├── .mailmap ├── CMake ├── GenerateMappings.cmake ├── Info.plist.in ├── cmake_uninstall.cmake.in ├── glfw3.pc.in ├── glfw3Config.cmake.in ├── i686-w64-mingw32-clang.cmake ├── i686-w64-mingw32.cmake ├── modules │ ├── FindEpollShim.cmake │ └── FindOSMesa.cmake ├── x86_64-w64-mingw32-clang.cmake └── x86_64-w64-mingw32.cmake ├── CMakeLists.txt ├── CONTRIBUTORS.md ├── LICENSE.md ├── README.md ├── deps ├── getopt.c ├── getopt.h ├── glad │ ├── gl.h │ ├── gles2.h │ └── vulkan.h ├── linmath.h ├── mingw │ ├── _mingw_dxhelper.h │ ├── dinput.h │ └── xinput.h ├── nuklear.h ├── nuklear_glfw_gl2.h ├── stb_image_write.h ├── tinycthread.c ├── tinycthread.h └── vs2008 │ └── stdint.h ├── docs ├── CMakeLists.txt ├── CODEOWNERS ├── CONTRIBUTING.md ├── Doxyfile.in ├── DoxygenLayout.xml ├── SUPPORT.md ├── build.dox ├── compat.dox ├── compile.dox ├── context.dox ├── extra.css ├── extra.css.map ├── extra.scss ├── footer.html ├── header.html ├── input.dox ├── internal.dox ├── intro.dox ├── main.dox ├── monitor.dox ├── moving.dox ├── news.dox ├── quick.dox ├── spaces.svg ├── vulkan.dox └── window.dox ├── examples ├── CMakeLists.txt ├── boing.c ├── gears.c ├── glfw.icns ├── glfw.ico ├── glfw.rc ├── heightmap.c ├── offscreen.c ├── particles.c ├── sharing.c ├── splitview.c ├── triangle-opengl.c ├── triangle-opengles.c ├── wave.c └── windows.c ├── include └── GLFW │ ├── glfw3.h │ └── glfw3native.h ├── premake5.lua ├── src ├── CMakeLists.txt ├── cocoa_init.m ├── cocoa_joystick.h ├── cocoa_joystick.m ├── cocoa_monitor.m ├── cocoa_platform.h ├── cocoa_time.c ├── cocoa_time.h ├── cocoa_window.m ├── context.c ├── egl_context.c ├── glfw.rc.in ├── glx_context.c ├── init.c ├── input.c ├── internal.h ├── linux_joystick.c ├── linux_joystick.h ├── mappings.h ├── mappings.h.in ├── monitor.c ├── nsgl_context.m ├── null_init.c ├── null_joystick.c ├── null_joystick.h ├── null_monitor.c ├── null_platform.h ├── null_window.c ├── osmesa_context.c ├── platform.c ├── platform.h ├── posix_module.c ├── posix_thread.c ├── posix_thread.h ├── posix_time.c ├── posix_time.h ├── vulkan.c ├── wgl_context.c ├── win32_init.c ├── win32_joystick.c ├── win32_joystick.h ├── win32_module.c ├── win32_monitor.c ├── win32_platform.h ├── win32_thread.c ├── win32_thread.h ├── win32_time.c ├── win32_time.h ├── win32_window.c ├── window.c ├── wl_init.c ├── wl_monitor.c ├── wl_platform.h ├── wl_window.c ├── x11_init.c ├── x11_monitor.c ├── x11_platform.h ├── x11_window.c ├── xkb_unicode.c └── xkb_unicode.h └── tests ├── CMakeLists.txt ├── allocator.c ├── clipboard.c ├── cursor.c ├── empty.c ├── events.c ├── gamma.c ├── glfwinfo.c ├── icon.c ├── iconify.c ├── inputlag.c ├── joysticks.c ├── monitors.c ├── msaa.c ├── reopen.c ├── tearing.c ├── threads.c ├── timeout.c ├── title.c ├── triangle-vulkan.c └── window.c /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/.mailmap -------------------------------------------------------------------------------- /CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /CMake/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/Info.plist.in -------------------------------------------------------------------------------- /CMake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /CMake/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/glfw3.pc.in -------------------------------------------------------------------------------- /CMake/glfw3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/glfw3Config.cmake.in -------------------------------------------------------------------------------- /CMake/i686-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/i686-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /CMake/modules/FindEpollShim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/modules/FindEpollShim.cmake -------------------------------------------------------------------------------- /CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /CMake/x86_64-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/x86_64-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/README.md -------------------------------------------------------------------------------- /deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/getopt.c -------------------------------------------------------------------------------- /deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/getopt.h -------------------------------------------------------------------------------- /deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/glad/gl.h -------------------------------------------------------------------------------- /deps/glad/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/glad/gles2.h -------------------------------------------------------------------------------- /deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/glad/vulkan.h -------------------------------------------------------------------------------- /deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/linmath.h -------------------------------------------------------------------------------- /deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/mingw/dinput.h -------------------------------------------------------------------------------- /deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/mingw/xinput.h -------------------------------------------------------------------------------- /deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/nuklear.h -------------------------------------------------------------------------------- /deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/stb_image_write.h -------------------------------------------------------------------------------- /deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/tinycthread.c -------------------------------------------------------------------------------- /deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/tinycthread.h -------------------------------------------------------------------------------- /deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/CODEOWNERS -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/Doxyfile.in -------------------------------------------------------------------------------- /docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/SUPPORT.md -------------------------------------------------------------------------------- /docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/build.dox -------------------------------------------------------------------------------- /docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/compat.dox -------------------------------------------------------------------------------- /docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/compile.dox -------------------------------------------------------------------------------- /docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/context.dox -------------------------------------------------------------------------------- /docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/extra.css -------------------------------------------------------------------------------- /docs/extra.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/extra.css.map -------------------------------------------------------------------------------- /docs/extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/extra.scss -------------------------------------------------------------------------------- /docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/footer.html -------------------------------------------------------------------------------- /docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/header.html -------------------------------------------------------------------------------- /docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/input.dox -------------------------------------------------------------------------------- /docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/internal.dox -------------------------------------------------------------------------------- /docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/intro.dox -------------------------------------------------------------------------------- /docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/main.dox -------------------------------------------------------------------------------- /docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/monitor.dox -------------------------------------------------------------------------------- /docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/moving.dox -------------------------------------------------------------------------------- /docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/news.dox -------------------------------------------------------------------------------- /docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/quick.dox -------------------------------------------------------------------------------- /docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/spaces.svg -------------------------------------------------------------------------------- /docs/vulkan.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/vulkan.dox -------------------------------------------------------------------------------- /docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/docs/window.dox -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/boing.c -------------------------------------------------------------------------------- /examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/gears.c -------------------------------------------------------------------------------- /examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/glfw.icns -------------------------------------------------------------------------------- /examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/glfw.ico -------------------------------------------------------------------------------- /examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/glfw.rc -------------------------------------------------------------------------------- /examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/heightmap.c -------------------------------------------------------------------------------- /examples/offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/offscreen.c -------------------------------------------------------------------------------- /examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/particles.c -------------------------------------------------------------------------------- /examples/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/sharing.c -------------------------------------------------------------------------------- /examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/splitview.c -------------------------------------------------------------------------------- /examples/triangle-opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/triangle-opengl.c -------------------------------------------------------------------------------- /examples/triangle-opengles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/triangle-opengles.c -------------------------------------------------------------------------------- /examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/wave.c -------------------------------------------------------------------------------- /examples/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/examples/windows.c -------------------------------------------------------------------------------- /include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/premake5.lua -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/cocoa_init.m -------------------------------------------------------------------------------- /src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/cocoa_joystick.h -------------------------------------------------------------------------------- /src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/cocoa_joystick.m -------------------------------------------------------------------------------- /src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/cocoa_monitor.m -------------------------------------------------------------------------------- /src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/cocoa_platform.h -------------------------------------------------------------------------------- /src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/cocoa_time.c -------------------------------------------------------------------------------- /src/cocoa_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/cocoa_time.h -------------------------------------------------------------------------------- /src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/cocoa_window.m -------------------------------------------------------------------------------- /src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/context.c -------------------------------------------------------------------------------- /src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/egl_context.c -------------------------------------------------------------------------------- /src/glfw.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/glfw.rc.in -------------------------------------------------------------------------------- /src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/glx_context.c -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/init.c -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/input.c -------------------------------------------------------------------------------- /src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/internal.h -------------------------------------------------------------------------------- /src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/linux_joystick.c -------------------------------------------------------------------------------- /src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/linux_joystick.h -------------------------------------------------------------------------------- /src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/mappings.h -------------------------------------------------------------------------------- /src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/mappings.h.in -------------------------------------------------------------------------------- /src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/monitor.c -------------------------------------------------------------------------------- /src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/nsgl_context.m -------------------------------------------------------------------------------- /src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/null_init.c -------------------------------------------------------------------------------- /src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/null_joystick.c -------------------------------------------------------------------------------- /src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/null_joystick.h -------------------------------------------------------------------------------- /src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/null_monitor.c -------------------------------------------------------------------------------- /src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/null_platform.h -------------------------------------------------------------------------------- /src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/null_window.c -------------------------------------------------------------------------------- /src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/osmesa_context.c -------------------------------------------------------------------------------- /src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/platform.c -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/posix_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/posix_module.c -------------------------------------------------------------------------------- /src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/posix_thread.c -------------------------------------------------------------------------------- /src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/posix_thread.h -------------------------------------------------------------------------------- /src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/posix_time.c -------------------------------------------------------------------------------- /src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/posix_time.h -------------------------------------------------------------------------------- /src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/vulkan.c -------------------------------------------------------------------------------- /src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/wgl_context.c -------------------------------------------------------------------------------- /src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_init.c -------------------------------------------------------------------------------- /src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_joystick.c -------------------------------------------------------------------------------- /src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_joystick.h -------------------------------------------------------------------------------- /src/win32_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_module.c -------------------------------------------------------------------------------- /src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_monitor.c -------------------------------------------------------------------------------- /src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_platform.h -------------------------------------------------------------------------------- /src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_thread.c -------------------------------------------------------------------------------- /src/win32_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_thread.h -------------------------------------------------------------------------------- /src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_time.c -------------------------------------------------------------------------------- /src/win32_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_time.h -------------------------------------------------------------------------------- /src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/win32_window.c -------------------------------------------------------------------------------- /src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/window.c -------------------------------------------------------------------------------- /src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/wl_init.c -------------------------------------------------------------------------------- /src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/wl_monitor.c -------------------------------------------------------------------------------- /src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/wl_platform.h -------------------------------------------------------------------------------- /src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/wl_window.c -------------------------------------------------------------------------------- /src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/x11_init.c -------------------------------------------------------------------------------- /src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/x11_monitor.c -------------------------------------------------------------------------------- /src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/x11_platform.h -------------------------------------------------------------------------------- /src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/x11_window.c -------------------------------------------------------------------------------- /src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/xkb_unicode.c -------------------------------------------------------------------------------- /src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/src/xkb_unicode.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/allocator.c -------------------------------------------------------------------------------- /tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/clipboard.c -------------------------------------------------------------------------------- /tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/cursor.c -------------------------------------------------------------------------------- /tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/empty.c -------------------------------------------------------------------------------- /tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/events.c -------------------------------------------------------------------------------- /tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/gamma.c -------------------------------------------------------------------------------- /tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/glfwinfo.c -------------------------------------------------------------------------------- /tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/icon.c -------------------------------------------------------------------------------- /tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/iconify.c -------------------------------------------------------------------------------- /tests/inputlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/inputlag.c -------------------------------------------------------------------------------- /tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/joysticks.c -------------------------------------------------------------------------------- /tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/monitors.c -------------------------------------------------------------------------------- /tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/msaa.c -------------------------------------------------------------------------------- /tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/reopen.c -------------------------------------------------------------------------------- /tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/tearing.c -------------------------------------------------------------------------------- /tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/threads.c -------------------------------------------------------------------------------- /tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/timeout.c -------------------------------------------------------------------------------- /tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/title.c -------------------------------------------------------------------------------- /tests/triangle-vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/triangle-vulkan.c -------------------------------------------------------------------------------- /tests/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/glfw/HEAD/tests/window.c --------------------------------------------------------------------------------