Pārlūkot izejas kodu

misc: fix copyright information here and there.

undefined
Sam Hocevar pirms 9 gadiem
vecāks
revīzija
441a20af99
22 mainītis faili ar 95 papildinājumiem un 77 dzēšanām
  1. +8
    -6
      doc/tutorial/01_triangle.cpp
  2. +8
    -6
      doc/tutorial/02_cube.cpp
  3. +8
    -6
      doc/tutorial/03_noise.cpp
  4. +8
    -6
      doc/tutorial/04_texture.cpp
  5. +9
    -7
      doc/tutorial/05_easymesh.cpp
  6. +9
    -7
      doc/tutorial/06_sprite.cpp
  7. +8
    -6
      doc/tutorial/07_input.cpp
  8. +8
    -7
      doc/tutorial/08_fbo.cpp
  9. +1
    -1
      doc/tutorial/11_fractal.cpp
  10. +8
    -7
      doc/tutorial/12_voronoi.cpp
  11. +8
    -6
      doc/tutorial/13_shader_builder.cpp
  12. +2
    -2
      doc/tutorial/14_lol_lua.cpp
  13. +1
    -1
      src/lolimgui.cpp
  14. +1
    -1
      src/lolua/baselua.cpp
  15. +1
    -1
      src/math/constants.cpp
  16. +1
    -1
      src/sys/hacks.cpp
  17. +1
    -1
      src/sys/thread.cpp
  18. +1
    -1
      src/sys/threadtypes.cpp
  19. +1
    -1
      src/t/base/avl_tree.cpp
  20. +1
    -1
      src/t/base/string.cpp
  21. +1
    -1
      src/t/math/noise/simplex.cpp
  22. +1
    -1
      src/t/sys/thread.cpp

+ 8
- 6
doc/tutorial/01_triangle.cpp Parādīt failu

@@ -1,11 +1,13 @@
//
// Lol Engine - Triangle tutorial
// Lol Engine — Triangle tutorial
//
// Copyright: (c) 2012-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 © 2012—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.
//

#if HAVE_CONFIG_H


+ 8
- 6
doc/tutorial/02_cube.cpp Parādīt failu

@@ -1,11 +1,13 @@
//
// Lol Engine - Cube tutorial
// Lol Engine — Cube tutorial
//
// Copyright: (c) 2011-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 © 2011—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.
//

#if HAVE_CONFIG_H


+ 8
- 6
doc/tutorial/03_noise.cpp Parādīt failu

@@ -1,11 +1,13 @@
//
// Lol Engine - Noise tutorial
// Lol Engine — Noise tutorial
//
// Copyright: (c) 2012-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 © 2012—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.
//

#if HAVE_CONFIG_H


+ 8
- 6
doc/tutorial/04_texture.cpp Parādīt failu

@@ -1,11 +1,13 @@
//
// Lol Engine - Graphing tutorial
// Lol Engine — Graphing tutorial
//
// Copyright: (c) 2012-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 © 2012—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.
//

#if HAVE_CONFIG_H


+ 9
- 7
doc/tutorial/05_easymesh.cpp Parādīt failu

@@ -1,12 +1,14 @@
//
// Lol Engine - EasyMesh tutorial
// Lol Engine — EasyMesh tutorial
//
// Copyright: (c) 2011-2013 Sam Hocevar <sam@hocevar.net>
// (c) 2012-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 © 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
// 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


+ 9
- 7
doc/tutorial/06_sprite.cpp Parādīt failu

@@ -1,12 +1,14 @@
//
// Lol Engine - Sprite tutorial
// Lol Engine — Sprite tutorial
//
// Copyright: (c) 2011-2013 Sam Hocevar <sam@hocevar.net>
// (c) 2012 Daniel Stephens (artwork)
// 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 © 2011—2015 Sam Hocevar <sam@hocevar.net>
// © 2012 Daniel Stephens (artwork)
//
// 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/tutorial/07_input.cpp Parādīt failu

@@ -1,11 +1,13 @@
//
// Lol Engine - Input tutorial
// Lol Engine — Input tutorial
//
// Copyright: (c) 2011-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 © 2011—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.
//

#if HAVE_CONFIG_H


+ 8
- 7
doc/tutorial/08_fbo.cpp Parādīt failu

@@ -1,11 +1,13 @@
//
// Lol Engine - Framebuffer Object tutorial
// Lol Engine — Framebuffer Object tutorial
//
// Copyright: (c) 2012-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 © 2012—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.
//

#if HAVE_CONFIG_H
@@ -13,7 +15,6 @@
#endif

#include <lol/engine.h>
#include "loldebug.h"

using namespace lol;



+ 1
- 1
doc/tutorial/11_fractal.cpp Parādīt failu

@@ -1,5 +1,5 @@
//
// Lol Engine - Fractal tutorial
// Lol Engine Fractal tutorial
//
// Copyright © 2011—2015 Sam Hocevar <sam@hocevar.net>
//


+ 8
- 7
doc/tutorial/12_voronoi.cpp Parādīt failu

@@ -1,12 +1,13 @@
//
// Lol Engine - Framebuffer Object tutorial
// Lol Engine — Voronoi diagram tutorial
//
// Copyright: (c) 2013-2013 Sam Hocevar <sam@hocevar.net>
// (c) 2013-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 © 2011—2015 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.
//

#if HAVE_CONFIG_H


+ 8
- 6
doc/tutorial/13_shader_builder.cpp Parādīt failu

@@ -1,11 +1,13 @@
//
// Lol Engine - Graphing tutorial
// Lol Engine — Shader builder tutorial
//
// Copyright: (c) 2012-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 © 2012—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.
//

#if HAVE_CONFIG_H


+ 2
- 2
doc/tutorial/14_lol_lua.cpp Parādīt failu

@@ -1,7 +1,7 @@
//
// Lol Engine — Graphing tutorial
// Lol Engine — Lua tutorial
//
// Copyright © 2005—2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 2014—2015 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


+ 1
- 1
src/lolimgui.cpp Parādīt failu

@@ -1,7 +1,7 @@
//
// imGui integration in lolengine
//
// Copyright © 2009—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// Copyright © 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


+ 1
- 1
src/lolua/baselua.cpp Parādīt failu

@@ -2,7 +2,7 @@
// Base Lua class for Lua script loading
//
// Copyright © 2009—2015 Sam Hocevar <sam@hocevar.net>
// © 2009—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 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


+ 1
- 1
src/math/constants.cpp Parādīt failu

@@ -1,7 +1,7 @@
//
// Lol Engine
//
// Copyright © 2010-2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 20102015 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


+ 1
- 1
src/sys/hacks.cpp Parādīt failu

@@ -1,7 +1,7 @@
//
// Lol Engine
//
// Copyright © 2010-2015 Sam Hocevar <sam@hocevar.net>
// Copyright © 20102015 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


+ 1
- 1
src/sys/thread.cpp Parādīt failu

@@ -2,7 +2,7 @@
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2014—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2014—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


+ 1
- 1
src/sys/threadtypes.cpp Parādīt failu

@@ -2,7 +2,7 @@
// Lol Engine
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2014—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2014—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


+ 1
- 1
src/t/base/avl_tree.cpp Parādīt failu

@@ -2,7 +2,7 @@
// Lol Engine — Unit tests
//
// 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


+ 1
- 1
src/t/base/string.cpp Parādīt failu

@@ -2,7 +2,7 @@
// Lol Engine — Unit tests
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2014—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2014—2015 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


+ 1
- 1
src/t/math/noise/simplex.cpp Parādīt failu

@@ -2,7 +2,7 @@
// Lol Engine — Unit tests
//
// 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 program is free software. It comes without any warranty, to


+ 1
- 1
src/t/sys/thread.cpp Parādīt failu

@@ -2,7 +2,7 @@
// Lol Engine — Unit tests
//
// Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
// © 2014—2015 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// © 2014—2015 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


Notiek ielāde…
Atcelt
Saglabāt