Browse Source

misc: some cleanup in files, including UTF-8 BOM.

undefined
Sam Hocevar 9 years ago
parent
commit
861568b146
100 changed files with 202 additions and 189 deletions
  1. +1
    -1
      doc/tutorial/01_triangle.cpp
  2. +1
    -1
      doc/tutorial/02_cube.cpp
  3. +1
    -1
      doc/tutorial/03_noise.cpp
  4. +1
    -1
      doc/tutorial/04_texture.cpp
  5. +1
    -1
      doc/tutorial/05_easymesh.cpp
  6. +1
    -1
      doc/tutorial/07_input.cpp
  7. +1
    -1
      doc/tutorial/08_fbo.cpp
  8. +1
    -1
      doc/tutorial/11_fractal.cpp
  9. +1
    -1
      doc/tutorial/12_voronoi.cpp
  10. +1
    -1
      doc/tutorial/13_shader_builder.cpp
  11. +1
    -1
      doc/tutorial/14_lol_lua.cpp
  12. +1
    -1
      src/base/assert.cpp
  13. +1
    -1
      src/base/log.cpp
  14. +1
    -1
      src/base/string.cpp
  15. +1
    -1
      src/camera.cpp
  16. +1
    -1
      src/dict.cpp
  17. +3
    -3
      src/easymesh/easymeshlua.cpp
  18. +3
    -3
      src/easymesh/easymeshlua.h
  19. +1
    -1
      src/eglapp.cpp
  20. +1
    -1
      src/engine/entity.cpp
  21. +40
    -40
      src/engine/entity.h
  22. +1
    -1
      src/engine/ticker.cpp
  23. +1
    -1
      src/gpu/renderer.cpp
  24. +1
    -1
      src/gpu/shader.cpp
  25. +1
    -1
      src/gpu/vertexbuffer.cpp
  26. +1
    -1
      src/image/codec/android-image.cpp
  27. +1
    -1
      src/image/codec/gdiplus-image.cpp
  28. +1
    -1
      src/image/codec/imlib2-image.cpp
  29. +1
    -1
      src/image/codec/ios-image.cpp
  30. +1
    -1
      src/image/codec/sdl-image.cpp
  31. +1
    -1
      src/image/image.cpp
  32. +1
    -1
      src/image/pixel.cpp
  33. +1
    -1
      src/input/controller.cpp
  34. +1
    -1
      src/input/keys.h
  35. +2
    -2
      src/lol/algorithm/aabb_tree.h
  36. +2
    -2
      src/lol/algorithm/portal.h
  37. +2
    -2
      src/lol/algorithm/sort.h
  38. +1
    -1
      src/lol/base/all.h
  39. +2
    -2
      src/lol/base/array.h
  40. +1
    -1
      src/lol/base/assert.h
  41. +2
    -2
      src/lol/base/avl_tree.h
  42. +1
    -1
      src/lol/base/enum.h
  43. +1
    -1
      src/lol/base/features.h
  44. +1
    -1
      src/lol/base/log.h
  45. +1
    -1
      src/lol/base/map.h
  46. +2
    -2
      src/lol/base/string.h
  47. +8
    -6
      src/lol/image/all.h
  48. +8
    -6
      src/lol/image/color.h
  49. +8
    -6
      src/lol/image/image.h
  50. +8
    -6
      src/lol/image/movie.h
  51. +8
    -6
      src/lol/image/pixel.h
  52. +1
    -1
      src/lol/math/bigint.h
  53. +2
    -2
      src/lol/math/geometry.h
  54. +1
    -1
      src/lol/math/matrix.h
  55. +2
    -2
      src/lol/math/noise/simplex.h
  56. +1
    -1
      src/lol/math/transform.h
  57. +1
    -1
      src/lol/math/vector.h
  58. +2
    -2
      src/lol/sys/thread.h
  59. +3
    -3
      src/lol/sys/threadtypes.h
  60. +1
    -1
      src/lolimgui.cpp
  61. +3
    -3
      src/lolimgui.h
  62. +1
    -1
      src/lolua/baselua.cpp
  63. +4
    -4
      src/lolua/baselua.h
  64. +1
    -1
      src/math/constants.cpp
  65. +1
    -1
      src/math/transform.cpp
  66. +1
    -1
      src/math/vector.cpp
  67. +1
    -1
      src/mesh/mesh.cpp
  68. +1
    -1
      src/platform/android/androidapp.cpp
  69. +1
    -1
      src/platform/sdl/sdlapp.cpp
  70. +1
    -1
      src/platform/sdl/sdlinput.cpp
  71. +1
    -1
      src/sample.cpp
  72. +9
    -6
      src/scene.h
  73. +1
    -1
      src/sys/hacks.cpp
  74. +1
    -1
      src/sys/init.cpp
  75. +1
    -1
      src/sys/thread.cpp
  76. +1
    -1
      src/sys/threadtypes.cpp
  77. +1
    -1
      src/t/base/array.cpp
  78. +1
    -1
      src/t/base/avl_tree.cpp
  79. +1
    -1
      src/t/base/enum.cpp
  80. +1
    -1
      src/t/base/map.cpp
  81. +1
    -1
      src/t/base/string.cpp
  82. +1
    -1
      src/t/base/types.cpp
  83. +1
    -1
      src/t/entity/camera.cpp
  84. +1
    -1
      src/t/image/color.cpp
  85. +1
    -1
      src/t/image/image.cpp
  86. +1
    -1
      src/t/math/array2d.cpp
  87. +1
    -1
      src/t/math/array3d.cpp
  88. +1
    -1
      src/t/math/arraynd.cpp
  89. +1
    -1
      src/t/math/bigint.cpp
  90. +1
    -1
      src/t/math/box.cpp
  91. +1
    -1
      src/t/math/cmplx.cpp
  92. +1
    -1
      src/t/math/half.cpp
  93. +1
    -1
      src/t/math/interp.cpp
  94. +1
    -1
      src/t/math/matrix.cpp
  95. +1
    -1
      src/t/math/noise/simplex.cpp
  96. +1
    -1
      src/t/math/polynomial.cpp
  97. +1
    -1
      src/t/math/quat.cpp
  98. +1
    -1
      src/t/math/rand.cpp
  99. +1
    -1
      src/t/math/real.cpp
  100. +1
    -1
      src/t/math/rotation.cpp

+ 1
- 1
doc/tutorial/01_triangle.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2012—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/02_cube.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2011—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/03_noise.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2012—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/04_texture.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2012—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/05_easymesh.cpp View File

@@ -4,7 +4,7 @@
// Copyright © 2011—2015 Sam Hocevar <sam@hocevar.net>
// © 2012—2013 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/07_input.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2011—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/08_fbo.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2012—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/11_fractal.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2011—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/12_voronoi.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2011—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/13_shader_builder.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2012—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
doc/tutorial/14_lol_lua.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2014—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/base/assert.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/base/log.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/camera.cpp View File

@@ -4,7 +4,7 @@
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2009—2013 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/dict.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 3
- 3
src/easymesh/easymeshlua.cpp View File

@@ -1,9 +1,9 @@
//
// MY CLASS TYPE
// Lol Engine — EasyMesh Lua loader
//
// Copyright © 2009-2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// Copyright © 2009—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 3
- 3
src/easymesh/easymeshlua.h View File

@@ -1,9 +1,9 @@
//
// MY CLASS TYPE
// Lol Engine — EasyMesh Lua loader
//
// Copyright © 2009-2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// Copyright © 2009—2015 Benjamin “Touky� Huet <huet.benjamin@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/eglapp.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/engine/entity.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 40
- 40
src/engine/entity.h View File

@@ -1,18 +1,20 @@
//
// Lol Engine
// Lol Engine
//
// Copyright: (c) 2010-2013 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>
//
// Lol Engine 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

//
// The Entity class
// ---------------
// ----------------
// Entities are objects that can be ticked by the game loop and/or the render
// loop. Entities are implemented as one or several linked lists. See the
// Ticker class for the ticking logic and the linked list implementation.
@@ -65,27 +67,27 @@ protected:

enum
{
GAMEGROUP_BEGIN = 0, //Must be the first element
GAMEGROUP_INPUT, //Input should be polled before everything else
GAMEGROUP_IMGUI, //Debug update needs to be called before the rest for init purposes
GAMEGROUP_APP, //Main application update
GAMEGROUP_ENTITY, //Default entity update
//------------------//Split entity update:
GAMEGROUP_PLAYER, //Player updates before AI to ensure player actions is prevalent
GAMEGROUP_AI, //AI update
GAMEGROUP_OTHER_0, //Other misc updates here
GAMEGROUP_OTHER_1, //Same ------------------
GAMEGROUP_OTHER_2, //Same ------------------
GAMEGROUP_OTHER_3, //Same ------------------
//------------------//Primitives updates
GAMEGROUP_MESH, //Update Mesh/Animation to ensure correct sync with PLY/AI
GAMEGROUP_FX, //Update FX/other to ensure correct sync with WorldPos and Meshes
GAMEGROUP_LIGHT, //Update after FX because it could some
GAMEGROUP_CAMERA, //Update camera at the end of the frame, once everything is settled
GAMEGROUP_STATS, //Stats updates
GAMEGROUP_END //Must be the last element
GAMEGROUP_BEGIN = 0, // must be the first element
GAMEGROUP_INPUT, // input should be polled before everything else
GAMEGROUP_IMGUI, // debug update needs to be called before the rest for init purposes
GAMEGROUP_APP, // main application update
GAMEGROUP_ENTITY, // default entity update
// ----------------- // split entity update:
GAMEGROUP_PLAYER, // player updates before AI to ensure player actions is prevalent
GAMEGROUP_AI, // AI update
GAMEGROUP_OTHER_0, // other misc updates here
GAMEGROUP_OTHER_1, // (same)
GAMEGROUP_OTHER_2, // (same)
GAMEGROUP_OTHER_3, // (same)
// ----------------- // primitives updates
GAMEGROUP_MESH, // update Mesh/Animation to ensure correct sync with PLY/AI
GAMEGROUP_FX, // update FX/other to ensure correct sync with WorldPos and Meshes
GAMEGROUP_LIGHT, // update after FX because it could some
GAMEGROUP_CAMERA, // update camera at the end of the frame, once everything is settled
GAMEGROUP_STATS, // stats update
GAMEGROUP_END // must be the last element
}
m_gamegroup;

@@ -93,28 +95,26 @@ protected:
{
DRAWGROUP_BEGIN = GAMEGROUP_END,

DRAWGROUP_CAMERA, //Update camera first for rendering
DRAWGROUP_TEXTURE, //Texture
DRAWGROUP_CAMERA, // update camera first for rendering
DRAWGROUP_TEXTURE, // texture
DRAWGROUP_LIGHT, //
DRAWGROUP_WORLD, //Other misc updates here
DRAWGROUP_WORLD, // other misc updates here
DRAWGROUP_ENTITY, //
DRAWGROUP_FX, //
DRAWGROUP_OTHER_0, //Other misc updates here
DRAWGROUP_OTHER_1, //Same ------------------
DRAWGROUP_OTHER_2, //Same ------------------
DRAWGROUP_OTHER_3, //Same ------------------
DRAWGROUP_APP, //Main application Draw
DRAWGROUP_OTHER_0, // other misc updates here
DRAWGROUP_OTHER_1, // (same)
DRAWGROUP_OTHER_2, // (same)
DRAWGROUP_OTHER_3, // (same)
DRAWGROUP_APP, // main application Draw
DRAWGROUP_HUD,
DRAWGROUP_IMGUI,
DRAWGROUP_CAPTURE,

DRAWGROUP_END, //Must be the next-to-last element
DRAWGROUP_NONE //This group is for non draw-ticked
DRAWGROUP_END, // must be the next-to-last element
DRAWGROUP_NONE, // this group is for non draw-ticked
}
m_drawgroup;

//static int const GAMEGROUP_BEGIN = 0;
//static int const DRAWGROUP_BEGIN = GAMEGROUP_END;
static int const ALLGROUP_END = DRAWGROUP_END;

/* The initialisation state */


+ 1
- 1
src/engine/ticker.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/gpu/renderer.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/gpu/shader.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/gpu/vertexbuffer.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/image/codec/android-image.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/image/codec/gdiplus-image.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/image/codec/imlib2-image.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/image/codec/ios-image.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/image/codec/sdl-image.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/image/image.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/image/pixel.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2004—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/input/controller.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Benjamin Litzelmann
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/input/keys.h View File

@@ -4,7 +4,7 @@
// Copyright © 2010—2013 Benjamin Litzelmann
// © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 2
- 2
src/lol/algorithm/aabb_tree.h View File

@@ -2,9 +2,9 @@
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2013—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 2
- 2
src/lol/algorithm/portal.h View File

@@ -2,9 +2,9 @@
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2013—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 2
- 2
src/lol/algorithm/sort.h View File

@@ -2,9 +2,9 @@
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2013—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lol/base/all.h View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2013 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 2
- 2
src/lol/base/array.h View File

@@ -2,9 +2,9 @@
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2013—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lol/base/assert.h View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 2
- 2
src/lol/base/avl_tree.h View File

@@ -2,10 +2,10 @@
// Lol Engine
//
// Copyright © 2010-2015 Sam Hocevar <sam@hocevar.net>
// © 2013-2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013-2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
// © 2013-2015 Guillaume Bittoun <guillaume.bittoun@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lol/base/enum.h View File

@@ -4,7 +4,7 @@
// Copyright © 2010-2015 Sam Hocevar <sam@hocevar.net>
// © 2013-2015 Guillaume Bittoun <guillaume.bittoun@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lol/base/features.h View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lol/base/log.h View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lol/base/map.h View File

@@ -4,7 +4,7 @@
// Copyright © 2010-2015 Sam Hocevar <sam@hocevar.net>
// © 2013-2015 Guillaume Bittoun <guillaume.bittoun@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 2
- 2
src/lol/base/string.h View File

@@ -2,9 +2,9 @@
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2013—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 8
- 6
src/lol/image/all.h View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine
//
// Copyright: (c) 2010-2013 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>
//
// Lol Engine 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
- 6
src/lol/image/color.h View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine
//
// 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>
//
// Lol Engine 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
- 6
src/lol/image/image.h View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine
//
// 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>
//
// Lol Engine 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
- 6
src/lol/image/movie.h View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine
//
// 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>
//
// Lol Engine 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
- 6
src/lol/image/pixel.h View File

@@ -1,11 +1,13 @@
//
// Lol Engine
// Lol Engine
//
// Copyright: © 2004—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.
// Copyright © 2004—2015 Sam Hocevar <sam@hocevar.net>
//
// Lol Engine 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


+ 1
- 1
src/lol/math/bigint.h View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 2
- 2
src/lol/math/geometry.h View File

@@ -2,9 +2,9 @@
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2010—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2010—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lol/math/matrix.h View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010-2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -2,10 +2,10 @@
// Lol Engine
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
// © 2013—2014 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2014 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
// © 2013—2014 Guillaume Bittoun <guillaume.bittoun@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lol/math/transform.h View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lol/math/vector.h View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 2
- 2
src/lol/sys/thread.h View File

@@ -2,9 +2,9 @@
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2013—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2013—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 3
- 3
src/lol/sys/threadtypes.h View File

@@ -1,10 +1,10 @@
//
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2013—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2013—2015 Benjamin “Touky� Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/lolimgui.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2009—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 3
- 3
src/lolimgui.h View File

@@ -1,9 +1,9 @@
//
// imGui integration in lolengine
// Lol Engine — imGui integration
//
// Copyright © 2009-2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// Copyright © 2009—2015 Benjamin “Touky� Huet <huet.benjamin@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -4,7 +4,7 @@
// 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
// Lol Engine 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.


+ 4
- 4
src/lolua/baselua.h View File

@@ -1,10 +1,10 @@
//
// Base Lua class for Lua script loading
// Lol Engine — base class for Lua script loading
//
// Copyright: (c) 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 program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/math/constants.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/math/transform.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/math/vector.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/mesh/mesh.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/platform/android/androidapp.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/platform/sdl/sdlapp.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/platform/sdl/sdlinput.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/sample.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 9
- 6
src/scene.h View File

@@ -1,11 +1,14 @@
//
// Lol Engine
// Lol Engine
//
// Copyright: (c) 2010-2013 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>
// © 2014—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// Lol Engine 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


+ 1
- 1
src/sys/hacks.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/sys/init.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -4,7 +4,7 @@
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2014—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/sys/threadtypes.cpp View File

@@ -4,7 +4,7 @@
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2014—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This library is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -5,7 +5,7 @@
// © 2013—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
// © 2013—2015 Guillaume Bittoun <guillaume.bittoun@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -4,7 +4,7 @@
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2014—2015 Benjamin “Touky” Huet <huet.benjamin@gmail.com>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/t/entity/camera.cpp View File

@@ -4,7 +4,7 @@
// 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
// Lol Engine 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.


+ 1
- 1
src/t/image/color.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


+ 1
- 1
src/t/image/image.cpp View File

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -5,7 +5,7 @@
// © 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
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


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

@@ -3,7 +3,7 @@
//
// Copyright © 2010—2014 Sam Hocevar <sam@hocevar.net>
//
// This program is free software. It comes without any warranty, to
// Lol Engine 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.


Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save