[glfw3] branch upstream updated (a4e3f34 -> 382580f)

James Cowgill jcowgill at moszumanska.debian.org
Fri Jun 3 12:52:17 UTC 2016


This is an automated email from the git hooks/post-receive script.

jcowgill pushed a change to branch upstream
in repository glfw3.

      from  a4e3f34   Imported Upstream version 3.1.2
      adds  382580f   Imported Upstream version 3.2

No new revisions were added by this update.

Summary of changes:
 .appveyor.yml                              |    22 +
 .github/CONTRIBUTING.md                    |   106 +
 .gitignore                                 |    13 +-
 .travis.yml                                |    30 +
 CMake/modules/FindEGL.cmake                |    16 -
 CMake/modules/FindGLESv1.cmake             |    16 -
 CMake/modules/FindGLESv2.cmake             |    16 -
 CMake/modules/FindVulkan.cmake             |    31 +
 CMake/modules/FindWayland.cmake            |    66 -
 CMake/modules/FindWaylandProtocols.cmake   |    26 +
 CMakeLists.txt                             |   258 +-
 COPYING.txt                                |     2 +-
 README.md                                  |   176 +-
 deps/EGL/eglext.h                          |   565 --
 deps/GL/glext.h                            | 11626 ---------------------------
 deps/GL/glxext.h                           |   906 ---
 deps/GL/wglext.h                           |   840 --
 deps/glad.c                                |  1290 ++-
 deps/glad/glad.h                           |  2214 ++++-
 deps/linmath.h                             |     4 +-
 deps/mingw/_mingw_dxhelper.h               |   117 +
 deps/mingw/dinput.h                        |  2467 ++++++
 deps/mingw/xinput.h                        |   239 +
 deps/tinycthread.c                         |     2 +-
 deps/tinycthread.h                         |     1 +
 deps/vulkan/vk_platform.h                  |   120 +
 deps/vulkan/vulkan.h                       |  3835 +++++++++
 docs/CMakeLists.txt                        |    31 +-
 docs/Doxyfile.in                           |    46 +-
 docs/build.dox                             |    98 +-
 docs/compat.dox                            |    55 +-
 docs/compile.dox                           |    86 +-
 docs/context.dox                           |    46 +-
 docs/input.dox                             |    95 +-
 docs/internal.dox                          |     4 +-
 docs/intro.dox                             |    59 +-
 docs/main.dox                              |    38 +-
 docs/monitor.dox                           |    33 +-
 docs/moving.dox                            |    24 +-
 docs/news.dox                              |    98 +-
 docs/quick.dox                             |   147 +-
 docs/rift.dox                              |   199 -
 docs/vulkan.dox                            |   212 +
 docs/window.dox                            |   274 +-
 examples/CMakeLists.txt                    |    40 +-
 examples/boing.c                           |    41 +-
 examples/gears.c                           |     5 +-
 examples/glfw.icns                         |   Bin 0 -> 27988 bytes
 examples/glfw.ico                          |   Bin 0 -> 21630 bytes
 examples/glfw.rc                           |     3 +
 examples/heightmap.c                       |    12 +-
 examples/particles.c                       |     6 +-
 examples/simple.c                          |   101 +-
 examples/splitview.c                       |    11 +-
 examples/wave.c                            |     4 +-
 include/GLFW/glfw3.h                       |  1939 +++--
 include/GLFW/glfw3native.h                 |   244 +-
 src/CMakeLists.txt                         |   120 +-
 src/cocoa_init.m                           |   161 +-
 src/{iokit_joystick.h => cocoa_joystick.h} |    33 +-
 src/{iokit_joystick.m => cocoa_joystick.m} |   280 +-
 src/cocoa_monitor.m                        |    28 +-
 src/cocoa_platform.h                       |    75 +-
 src/{mach_time.c => cocoa_time.c}          |    27 +-
 src/cocoa_window.m                         |   757 +-
 src/context.c                              |   258 +-
 src/egl_context.c                          |   539 +-
 src/egl_context.h                          |   169 +-
 src/glfw3Config.cmake.in                   |    16 +-
 src/glfw_config.h.in                       |    22 +-
 src/glx_context.c                          |   424 +-
 src/glx_context.h                          |   146 +-
 src/init.c                                 |    28 +-
 src/input.c                                |   329 +-
 src/internal.h                             |   467 +-
 src/linux_joystick.c                       |   207 +-
 src/linux_joystick.h                       |    42 +-
 src/mir_init.c                             |   160 +-
 src/mir_monitor.c                          |    16 +-
 src/mir_platform.h                         |    39 +-
 src/mir_window.c                           |   361 +-
 src/monitor.c                              |    81 +-
 src/nsgl_context.h                         |    21 +-
 src/nsgl_context.m                         |   193 +-
 src/posix_time.c                           |    60 +-
 src/posix_time.h                           |    11 +-
 src/posix_tls.c                            |    26 +-
 src/posix_tls.h                            |    10 +-
 src/vulkan.c                               |   287 +
 src/wgl_context.c                          |   548 +-
 src/wgl_context.h                          |   146 +-
 src/win32_init.c                           |   212 +-
 src/win32_joystick.c                       |   763 ++
 src/{winmm_joystick.h => win32_joystick.h} |    45 +-
 src/win32_monitor.c                        |   190 +-
 src/win32_platform.h                       |   204 +-
 src/win32_time.c                           |    50 +-
 src/win32_tls.c                            |    24 +-
 src/win32_tls.h                            |    48 -
 src/win32_window.c                         |  1240 ++-
 src/window.c                               |   416 +-
 src/winmm_joystick.c                       |   177 -
 src/wl_init.c                              |   330 +-
 src/wl_monitor.c                           |    33 +-
 src/wl_platform.h                          |    68 +-
 src/wl_window.c                            |   655 +-
 src/x11_init.c                             |   302 +-
 src/x11_monitor.c                          |    20 +-
 src/x11_platform.h                         |   125 +-
 src/x11_window.c                           |  1265 ++-
 src/xkb_unicode.c                          |    40 +-
 src/xkb_unicode.h                          |     2 +-
 tests/CMakeLists.txt                       |    80 +-
 tests/clipboard.c                          |     6 +-
 tests/cursor.c                             |    28 +-
 tests/empty.c                              |    10 +-
 tests/events.c                             |    55 +-
 tests/gamma.c                              |     8 +-
 tests/glfwinfo.c                           |   393 +-
 tests/{clipboard.c => icon.c}              |   135 +-
 tests/iconify.c                            |    57 +-
 tests/joysticks.c                          |   143 +-
 tests/monitors.c                           |     6 +-
 tests/msaa.c                               |    13 +-
 tests/reopen.c                             |     6 +-
 tests/sharing.c                            |     8 +-
 tests/tearing.c                            |    10 +-
 tests/threads.c                            |    16 +-
 tests/{empty.c => timeout.c}               |   226 +-
 tests/title.c                              |     4 +-
 tests/vulkan.c                             |  2245 ++++++
 tests/windows.c                            |    45 +-
 132 files changed, 24097 insertions(+), 20648 deletions(-)
 create mode 100644 .appveyor.yml
 create mode 100644 .github/CONTRIBUTING.md
 create mode 100644 .travis.yml
 delete mode 100644 CMake/modules/FindEGL.cmake
 delete mode 100644 CMake/modules/FindGLESv1.cmake
 delete mode 100644 CMake/modules/FindGLESv2.cmake
 create mode 100644 CMake/modules/FindVulkan.cmake
 delete mode 100644 CMake/modules/FindWayland.cmake
 create mode 100644 CMake/modules/FindWaylandProtocols.cmake
 delete mode 100644 deps/EGL/eglext.h
 delete mode 100644 deps/GL/glext.h
 delete mode 100644 deps/GL/glxext.h
 delete mode 100644 deps/GL/wglext.h
 create mode 100644 deps/mingw/_mingw_dxhelper.h
 create mode 100644 deps/mingw/dinput.h
 create mode 100644 deps/mingw/xinput.h
 create mode 100644 deps/vulkan/vk_platform.h
 create mode 100644 deps/vulkan/vulkan.h
 delete mode 100644 docs/rift.dox
 create mode 100644 docs/vulkan.dox
 create mode 100644 examples/glfw.icns
 create mode 100644 examples/glfw.ico
 create mode 100644 examples/glfw.rc
 rename src/{iokit_joystick.h => cocoa_joystick.h} (71%)
 rename src/{iokit_joystick.m => cocoa_joystick.m} (60%)
 rename src/{mach_time.c => cocoa_time.c} (75%)
 create mode 100644 src/vulkan.c
 create mode 100644 src/win32_joystick.c
 rename src/{winmm_joystick.h => win32_joystick.h} (52%)
 delete mode 100644 src/win32_tls.h
 delete mode 100644 src/winmm_joystick.c
 copy tests/{clipboard.c => icon.c} (51%)
 copy tests/{empty.c => timeout.c} (69%)
 create mode 100644 tests/vulkan.c

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/glfw3.git



More information about the Pkg-games-commits mailing list