瀏覽代碼

Paperwork done

Camilla Löwy 8 年之前
父節點
當前提交
f4d0c83181
共有 75 個文件被更改,包括 75 次插入75 次删除
  1. 1 1
      COPYING.txt
  2. 1 1
      deps/tinycthread.c
  3. 1 1
      examples/gears.c
  4. 1 1
      examples/offscreen.c
  5. 1 1
      examples/particles.c
  6. 1 1
      examples/simple.c
  7. 1 1
      examples/wave.c
  8. 1 1
      include/GLFW/glfw3.h
  9. 1 1
      include/GLFW/glfw3native.h
  10. 1 1
      src/cocoa_init.m
  11. 1 1
      src/cocoa_joystick.h
  12. 1 1
      src/cocoa_joystick.m
  13. 1 1
      src/cocoa_monitor.m
  14. 1 1
      src/cocoa_platform.h
  15. 1 1
      src/cocoa_time.c
  16. 1 1
      src/cocoa_window.m
  17. 1 1
      src/context.c
  18. 1 1
      src/egl_context.c
  19. 1 1
      src/egl_context.h
  20. 1 1
      src/glfw_config.h.in
  21. 1 1
      src/glx_context.c
  22. 1 1
      src/glx_context.h
  23. 1 1
      src/init.c
  24. 1 1
      src/input.c
  25. 1 1
      src/internal.h
  26. 1 1
      src/linux_joystick.c
  27. 1 1
      src/monitor.c
  28. 1 1
      src/nsgl_context.h
  29. 1 1
      src/nsgl_context.m
  30. 1 1
      src/osmesa_context.c
  31. 1 1
      src/osmesa_context.h
  32. 1 1
      src/osmesa_init.c
  33. 1 1
      src/osmesa_monitor.c
  34. 1 1
      src/osmesa_platform.h
  35. 1 1
      src/osmesa_window.c
  36. 1 1
      src/posix_time.c
  37. 1 1
      src/posix_time.h
  38. 1 1
      src/posix_tls.c
  39. 1 1
      src/posix_tls.h
  40. 1 1
      src/vulkan.c
  41. 1 1
      src/wgl_context.c
  42. 1 1
      src/wgl_context.h
  43. 1 1
      src/win32_init.c
  44. 1 1
      src/win32_joystick.c
  45. 1 1
      src/win32_joystick.h
  46. 1 1
      src/win32_monitor.c
  47. 1 1
      src/win32_platform.h
  48. 1 1
      src/win32_time.c
  49. 1 1
      src/win32_tls.c
  50. 1 1
      src/win32_window.c
  51. 1 1
      src/window.c
  52. 1 1
      src/x11_init.c
  53. 1 1
      src/x11_monitor.c
  54. 1 1
      src/x11_platform.h
  55. 1 1
      src/x11_window.c
  56. 1 1
      src/xkb_unicode.c
  57. 1 1
      tests/clipboard.c
  58. 1 1
      tests/cursor.c
  59. 1 1
      tests/empty.c
  60. 1 1
      tests/events.c
  61. 1 1
      tests/gamma.c
  62. 1 1
      tests/glfwinfo.c
  63. 1 1
      tests/icon.c
  64. 1 1
      tests/iconify.c
  65. 1 1
      tests/joysticks.c
  66. 1 1
      tests/monitors.c
  67. 1 1
      tests/msaa.c
  68. 1 1
      tests/reopen.c
  69. 1 1
      tests/sharing.c
  70. 1 1
      tests/tearing.c
  71. 1 1
      tests/threads.c
  72. 1 1
      tests/timeout.c
  73. 1 1
      tests/title.c
  74. 1 1
      tests/vulkan.c
  75. 1 1
      tests/windows.c

+ 1 - 1
COPYING.txt

@@ -1,5 +1,5 @@
 Copyright (c) 2002-2006 Marcus Geelnard
-Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 
 This software is provided 'as-is', without any express or implied
 warranty. In no event will the authors be held liable for any damages

+ 1 - 1
deps/tinycthread.c

@@ -21,7 +21,7 @@ freely, subject to the following restrictions:
     distribution.
 */
 
-/* 2013-01-06 Camilla Berglund <[email protected]>
+/* 2013-01-06 Camilla Löwy <[email protected]>
  *
  * Added casts from time_t to DWORD to avoid warnings on VC++.
  * Fixed time retrieval on POSIX systems.

+ 1 - 1
examples/gears.c

@@ -15,7 +15,7 @@
  *   - Slightly modified camera that should work better for stereo viewing
  *
  *
- * Camilla Berglund:
+ * Camilla Löwy:
  *   - Removed FPS counter (this is not a benchmark)
  *   - Added a few comments
  *   - Enabled vsync

+ 1 - 1
examples/offscreen.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Offscreen rendering example
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
examples/particles.c

@@ -1,7 +1,7 @@
 //========================================================================
 // A simple particle engine with threaded physics
 // Copyright (c) Marcus Geelnard
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
examples/simple.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Simple GLFW example
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
examples/wave.c

@@ -5,7 +5,7 @@
  * Modified for GLFW by Sylvain Hellegouarch - [email protected]
  * Modified for variable frame rate by Marcus Geelnard
  * 2003-Jan-31: Minor cleanups and speedups / MG
- * 2010-10-24: Formatting and cleanup - Camilla Berglund
+ * 2010-10-24: Formatting and cleanup - Camilla Löwy
  *****************************************************************************/
 
 #if defined(_MSC_VER)

+ 1 - 1
include/GLFW/glfw3.h

@@ -3,7 +3,7 @@
  * A library for OpenGL, window and input
  *------------------------------------------------------------------------
  * Copyright (c) 2002-2006 Marcus Geelnard
- * Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+ * Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
  *
  * This software is provided 'as-is', without any express or implied
  * warranty. In no event will the authors be held liable for any damages

+ 1 - 1
include/GLFW/glfw3native.h

@@ -3,7 +3,7 @@
  * A library for OpenGL, window and input
  *------------------------------------------------------------------------
  * Copyright (c) 2002-2006 Marcus Geelnard
- * Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+ * Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
  *
  * This software is provided 'as-is', without any express or implied
  * warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_init.m

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 macOS - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2009-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_joystick.h

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 Cocoa - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_joystick.m

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 Cocoa - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2009-2016 Camilla Löwy <[email protected]>
 // Copyright (c) 2012 Torsten Walluhn <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied

+ 1 - 1
src/cocoa_monitor.m

@@ -2,7 +2,7 @@
 // GLFW 3.3 macOS - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_platform.h

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 macOS - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2009-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_time.c

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 macOS - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2009-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/cocoa_window.m

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 macOS - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2009-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/context.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/egl_context.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 EGL - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/egl_context.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 EGL - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/glfw_config.h.in

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2010-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2010-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/glx_context.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 GLX - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/glx_context.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 GLX - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/init.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/input.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/internal.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/linux_joystick.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 Linux - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/monitor.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/nsgl_context.h

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 macOS - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2009-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/nsgl_context.m

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 macOS - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2009-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2009-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/osmesa_context.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 OSMesa - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2016 Google Inc.
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/osmesa_context.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 OSMesa - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2016 Google Inc.
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/osmesa_init.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 OSMesa - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2016 Google Inc.
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/osmesa_monitor.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 OSMesa - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2016 Google Inc.
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/osmesa_platform.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 OSMesa - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2016 Google Inc.
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/osmesa_window.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 OSMesa - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2016 Google Inc.
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/posix_time.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 POSIX - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/posix_time.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 POSIX - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/posix_tls.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 POSIX - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/posix_tls.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 POSIX - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/vulkan.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/wgl_context.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 WGL - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/wgl_context.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 WGL - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_init.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_joystick.c

@@ -2,7 +2,7 @@
 // GLFW 3.1 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_joystick.h

@@ -1,7 +1,7 @@
 //========================================================================
 // GLFW 3.3 Win32 - www.glfw.org
 //------------------------------------------------------------------------
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_monitor.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_platform.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_time.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_tls.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/win32_window.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 Win32 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/window.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 // Copyright (c) 2012 Torsten Walluhn <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied

+ 1 - 1
src/x11_init.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 X11 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/x11_monitor.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 X11 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/x11_platform.h

@@ -2,7 +2,7 @@
 // GLFW 3.3 X11 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/x11_window.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 X11 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
src/xkb_unicode.c

@@ -2,7 +2,7 @@
 // GLFW 3.3 X11 - www.glfw.org
 //------------------------------------------------------------------------
 // Copyright (c) 2002-2006 Marcus Geelnard
-// Copyright (c) 2006-2016 Camilla Berglund <[email protected]>
+// Copyright (c) 2006-2016 Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/clipboard.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Clipboard test program
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/cursor.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Cursor & input mode tests
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/empty.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Empty event test
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/events.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Event linter (event spewer)
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/gamma.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Gamma correction test program
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/glfwinfo.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Context creation and information tool
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/icon.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Window icon test program
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/iconify.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Iconify/restore test program
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/joysticks.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Joystick input test
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/monitors.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Monitor information tool
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/msaa.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Multisample anti-aliasing test
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/reopen.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Window re-opener (open/close stress test)
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/sharing.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Context sharing test program
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/tearing.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Vsync enabling test
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/threads.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Multi-threading test
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/timeout.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Event wait timeout test
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/title.c

@@ -1,6 +1,6 @@
 //========================================================================
 // UTF-8 window title test
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages

+ 1 - 1
tests/vulkan.c

@@ -22,7 +22,7 @@
  * Author: Jon Ashburn <[email protected]>
  * Author: Piers Daniell <[email protected]>
  * Author: Gwan-gyeong Mun <[email protected]>
- * Porter: Camilla Berglund <[email protected]>
+ * Porter: Camilla Löwy <[email protected]>
  */
 /*
  * Draw a textured triangle with depth testing.  This is written against Intel

+ 1 - 1
tests/windows.c

@@ -1,6 +1,6 @@
 //========================================================================
 // Simple multi-window test
-// Copyright (c) Camilla Berglund <[email protected]>
+// Copyright (c) Camilla Löwy <[email protected]>
 //
 // This software is provided 'as-is', without any express or implied
 // warranty. In no event will the authors be held liable for any damages