Browse Source

build: fix license and copyright information.

undefined
Sam Hocevar 9 years ago
parent
commit
d64b117b8d
77 changed files with 478 additions and 431 deletions
  1. +6
    -5
      doc/samples/benchmark/half.cpp
  2. +6
    -5
      doc/samples/benchmark/real.cpp
  3. +6
    -5
      doc/samples/benchmark/trig.cpp
  4. +6
    -5
      doc/samples/benchmark/vector.cpp
  5. +6
    -5
      doc/samples/benchsuite.cpp
  6. +8
    -6
      doc/samples/math/poly.cpp
  7. +1
    -1
      doc/samples/sandbox/sample.cpp
  8. +6
    -5
      doc/tutorial/14_lol_lua.cpp
  9. +6
    -5
      src/base/assert.cpp
  10. +6
    -5
      src/dict.cpp
  11. +6
    -5
      src/eglapp.cpp
  12. +6
    -5
      src/entity.cpp
  13. +6
    -5
      src/gpu/renderer.cpp
  14. +6
    -5
      src/gpu/vertexbuffer.cpp
  15. +6
    -5
      src/image/codec/android-image.cpp
  16. +6
    -5
      src/image/codec/gdiplus-image.cpp
  17. +6
    -5
      src/image/codec/imlib2-image.cpp
  18. +6
    -5
      src/image/codec/ios-image.cpp
  19. +6
    -5
      src/image/codec/sdl-image.cpp
  20. +8
    -6
      src/image/pixel.cpp
  21. +6
    -8
      src/image/todo/bezier.cpp
  22. +5
    -7
      src/image/todo/blit.cpp
  23. +5
    -7
      src/image/todo/blur.cpp
  24. +5
    -7
      src/image/todo/context.cpp
  25. +6
    -8
      src/image/todo/coreimage.cpp
  26. +6
    -8
      src/image/todo/coreimage.h
  27. +6
    -8
      src/image/todo/floodfill.cpp
  28. +6
    -8
      src/image/todo/jpeg.cpp
  29. +6
    -8
      src/image/todo/line.cpp
  30. +6
    -7
      src/image/todo/measure.cpp
  31. +5
    -7
      src/image/todo/reduce.cpp
  32. +5
    -7
      src/image/todo/rgb.cpp
  33. +5
    -7
      src/image/todo/rotate.cpp
  34. +5
    -7
      src/image/todo/sequence.cpp
  35. +5
    -7
      src/image/todo/transform.cpp
  36. +5
    -7
      src/image/todo/wave.cpp
  37. +6
    -5
      src/input/controller.cpp
  38. +8
    -7
      src/input/keys.h
  39. +6
    -5
      src/lol/base/assert.h
  40. +6
    -5
      src/lol/base/log.h
  41. +8
    -7
      src/lol/math/noise/simplex.h
  42. +2
    -2
      src/lolua/baselua.cpp
  43. +6
    -5
      src/math/vector.cpp
  44. +6
    -5
      src/mesh/mesh.cpp
  45. +6
    -5
      src/platform/android/androidapp.cpp
  46. +6
    -5
      src/platform/sdl/sdlapp.cpp
  47. +6
    -5
      src/platform/sdl/sdlinput.cpp
  48. +6
    -5
      src/sample.cpp
  49. +6
    -5
      src/sys/init.cpp
  50. +7
    -6
      src/t/base/array.cpp
  51. +4
    -4
      src/t/base/avl_tree.cpp
  52. +8
    -6
      src/t/base/enum.cpp
  53. +1
    -1
      src/t/base/map.cpp
  54. +1
    -1
      src/t/base/string.cpp
  55. +8
    -6
      src/t/base/types.cpp
  56. +9
    -7
      src/t/entity/camera.cpp
  57. +8
    -6
      src/t/image/color.cpp
  58. +8
    -6
      src/t/image/image.cpp
  59. +8
    -6
      src/t/math/array2d.cpp
  60. +8
    -6
      src/t/math/array3d.cpp
  61. +8
    -6
      src/t/math/arraynd.cpp
  62. +1
    -1
      src/t/math/bigint.cpp
  63. +8
    -6
      src/t/math/box.cpp
  64. +8
    -6
      src/t/math/cmplx.cpp
  65. +8
    -6
      src/t/math/half.cpp
  66. +8
    -6
      src/t/math/interp.cpp
  67. +8
    -6
      src/t/math/matrix.cpp
  68. +10
    -8
      src/t/math/noise/simplex.cpp
  69. +8
    -6
      src/t/math/polynomial.cpp
  70. +8
    -6
      src/t/math/quat.cpp
  71. +8
    -6
      src/t/math/rand.cpp
  72. +8
    -6
      src/t/math/real.cpp
  73. +8
    -6
      src/t/math/rotation.cpp
  74. +8
    -6
      src/t/math/trig.cpp
  75. +8
    -6
      src/t/math/vector.cpp
  76. +1
    -1
      src/t/sys/thread.cpp
  77. +8
    -6
      src/t/test-common.cpp

+ 6
- 5
doc/samples/benchmark/half.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine — Benchmark program
//
// Copyright: © 2005—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2005—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#if HAVE_CONFIG_H


+ 6
- 5
doc/samples/benchmark/real.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine — Benchmark program
//
// Copyright: © 2005—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2005—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#if HAVE_CONFIG_H


+ 6
- 5
doc/samples/benchmark/trig.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine — Benchmark program
//
// Copyright: © 2005—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2005—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#if HAVE_CONFIG_H


+ 6
- 5
doc/samples/benchmark/vector.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine — Benchmark program
//
// Copyright: © 2005—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2005—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#if HAVE_CONFIG_H


+ 6
- 5
doc/samples/benchsuite.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine — Benchmark program
//
// Copyright: © 2005—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2005—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#if HAVE_CONFIG_H


+ 8
- 6
doc/samples/math/poly.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine - Sample math program: chek trigonometric functions
// Lol Engine — Sample math program: check trigonometric functions
//
// Copyright: (c) 2005-2011 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2005—2011 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#if HAVE_CONFIG_H


+ 1
- 1
doc/samples/sandbox/sample.cpp View File

@@ -1,5 +1,5 @@
//
// Lol Engine - Sandbox program
// Lol Engine Sandbox program
//
// Copyright © 2005—2015 Sam Hocevar <sam@hocevar.net>
//


+ 6
- 5
doc/tutorial/14_lol_lua.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine — Graphing tutorial
//
// Copyright: © 2012—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2005—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#if HAVE_CONFIG_H


+ 6
- 5
src/base/assert.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/dict.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/eglapp.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/entity.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/gpu/renderer.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/gpu/vertexbuffer.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/image/codec/android-image.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/image/codec/gdiplus-image.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#if HAVE_CONFIG_H


+ 6
- 5
src/image/codec/imlib2-image.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/image/codec/ios-image.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/image/codec/sdl-image.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/image/pixel.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine
//
// Copyright: © 2004—2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2004—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 8
src/image/todo/bezier.cpp View File

@@ -1,16 +1,14 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* 2008 Jean-Yves Lamoureux <jylam@lnxscene.org
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
* © 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 5
- 7
src/image/todo/blit.cpp View File

@@ -1,15 +1,13 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 5
- 7
src/image/todo/blur.cpp View File

@@ -1,15 +1,13 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 5
- 7
src/image/todo/context.cpp View File

@@ -1,15 +1,13 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 6
- 8
src/image/todo/coreimage.cpp View File

@@ -1,16 +1,14 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
* © 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 6
- 8
src/image/todo/coreimage.h View File

@@ -1,16 +1,14 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
* © 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 6
- 8
src/image/todo/floodfill.cpp View File

@@ -1,16 +1,14 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
* © 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 6
- 8
src/image/todo/jpeg.cpp View File

@@ -1,16 +1,14 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
* © 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 6
- 8
src/image/todo/line.cpp View File

@@ -1,16 +1,14 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
* © 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 6
- 7
src/image/todo/measure.cpp View File

@@ -1,15 +1,14 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
* © 2008 Jean-Yves Lamoureux <jylam@lnxscene.org>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 5
- 7
src/image/todo/reduce.cpp View File

@@ -1,15 +1,13 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 5
- 7
src/image/todo/rgb.cpp View File

@@ -1,15 +1,13 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 5
- 7
src/image/todo/rotate.cpp View File

@@ -1,15 +1,13 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 5
- 7
src/image/todo/sequence.cpp View File

@@ -1,15 +1,13 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2009 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2009 Sam Hocevar <sam@hocevar.net>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 5
- 7
src/image/todo/transform.cpp View File

@@ -1,15 +1,13 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 5
- 7
src/image/todo/wave.cpp View File

@@ -1,15 +1,13 @@
/*
* libpipi Pathetic image processing interface library
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
* Lol Engine
*
* $Id$
* Copyright © 2004—2008 Sam Hocevar <sam@hocevar.net>
*
* This library is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by the WTFPL Task Force.
* See http://www.wtfpl.net/ for more details.
*/

/*


+ 6
- 5
src/input/controller.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Benjamin Litzelmann
// Copyright © 2010—2015 Benjamin Litzelmann
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 7
src/input/keys.h View File

@@ -1,13 +1,14 @@
//
// Lol Engine
// Lol Engine
//
// Copyright: (c) 2010-2013 Benjamin Litzelmann
// (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2013 Benjamin Litzelmann
// © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License) Version 2) as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

/* A list of typical keyboard scancodes, along with a user-friendly


+ 6
- 5
src/lol/base/assert.h View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#pragma once


+ 6
- 5
src/lol/base/log.h View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#pragma once


+ 8
- 7
src/lol/math/noise/simplex.h View File

@@ -1,14 +1,15 @@
//
// Lol Engine
//
// Copyright: © 2010—2014 Sam Hocevar <sam@hocevar.net>
// © 2013—2014 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2014 Guillaume Bittoun <guillaume.bittoun@gmail.com>
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
// © 2013—2014 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2014 Guillaume Bittoun <guillaume.bittoun@gmail.com>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#pragma once


+ 2
- 2
src/lolua/baselua.cpp View File

@@ -1,8 +1,8 @@
//
// Base Lua class for Lua script loading
//
// Copyright: © 2009—2015 Sam Hocevar <sam@hocevar.net>
// © 2009—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// Copyright © 2009—2015 Sam Hocevar <sam@hocevar.net>
// © 2009—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it


+ 6
- 5
src/math/vector.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/mesh/mesh.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/platform/android/androidapp.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/platform/sdl/sdlapp.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/platform/sdl/sdlinput.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/sample.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 6
- 5
src/sys/init.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine
//
// Copyright: © 2010—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This library is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 7
- 6
src/t/base/array.cpp View File

@@ -1,12 +1,13 @@
//
// Lol Engine — unit tests
// Lol Engine — Unit tests
//
// Copyright: © 2010—2014 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 4
- 4
src/t/base/avl_tree.cpp View File

@@ -1,9 +1,9 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright © 2010-2015 Sam Hocevar <sam@hocevar.net>
// © 2013-2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013-2015 Guillaume Bittoun <guillaume.bittoun@gmail.com>
// Copyright © 20102015 Sam Hocevar <sam@hocevar.net>
// © 20132015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 20132015 Guillaume Bittoun <guillaume.bittoun@gmail.com>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it


+ 8
- 6
src/t/base/enum.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 1
- 1
src/t/base/map.cpp View File

@@ -1,5 +1,5 @@
//
// Lol Engine — unit tests
// Lol Engine — Unit tests
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//


+ 1
- 1
src/t/base/string.cpp View File

@@ -1,5 +1,5 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2014—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>


+ 8
- 6
src/t/base/types.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 9
- 7
src/t/entity/camera.cpp View File

@@ -1,12 +1,14 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// (c) 2013 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
// © 2013 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/image/color.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/image/image.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/array2d.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/array3d.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/arraynd.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 1
- 1
src/t/math/bigint.cpp View File

@@ -1,5 +1,5 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//


+ 8
- 6
src/t/math/box.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/cmplx.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/half.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/interp.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/matrix.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 10
- 8
src/t/math/noise/simplex.cpp View File

@@ -1,13 +1,15 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// (c) 2013-2014 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// (c) 2013-2014 Guillaume Bittoun <guillaume.bittoun@gmail.com>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
// © 2013—2014 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2014 Guillaume Bittoun <guillaume.bittoun@gmail.com>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/polynomial.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/quat.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/rand.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/real.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/rotation.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/trig.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 8
- 6
src/t/math/vector.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


+ 1
- 1
src/t/sys/thread.cpp View File

@@ -1,5 +1,5 @@
//
// Lol Engine — unit tests
// Lol Engine — Unit tests
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2014—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>


+ 8
- 6
src/t/test-common.cpp View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine — Unit tests
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
// and/or modify it under the terms of the Do What the Fuck You Want
// to Public License, Version 2, as published by the WTFPL Task Force.
// See http://www.wtfpl.net/ for more details.
//

#include <lol/engine-internal.h>


Loading…
Cancel
Save