From 09262a606b3144e5232012c85e77951fe01445f5 Mon Sep 17 00:00:00 2001 From: Deve Date: Tue, 4 Jul 2017 22:55:08 +0200 Subject: [PATCH] Add missing copyright. The EGL context manager has been written from scratch, so our copyright should be fine. --- lib/irrlicht/source/Irrlicht/CContextEGL.cpp | 23 ++++++++++++++------ lib/irrlicht/source/Irrlicht/CContextEGL.h | 23 ++++++++++++++------ src/main_android.cpp | 17 +++++++++++++++ 3 files changed, 49 insertions(+), 14 deletions(-) diff --git a/lib/irrlicht/source/Irrlicht/CContextEGL.cpp b/lib/irrlicht/source/Irrlicht/CContextEGL.cpp index 258918399..50f12a60e 100644 --- a/lib/irrlicht/source/Irrlicht/CContextEGL.cpp +++ b/lib/irrlicht/source/Irrlicht/CContextEGL.cpp @@ -1,10 +1,19 @@ -// Copyright (C) 2013 Patryk Nadrowski -// Copyright (C) 2016-2017 Dawid Gan -// Heavily based on the OpenGL driver implemented by Nikolaus Gebhardt -// OpenGL ES driver implemented by Christian Stehno and first OpenGL ES 2.0 -// driver implemented by Amundis. -// This file is part of the "Irrlicht Engine". -// For conditions of distribution and use, see copyright notice in Irrlicht.h +// SuperTuxKart - a fun racing game with go-kart +// Copyright (C) 2016-2017 SuperTuxKart-Team +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 3 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "IrrCompileConfig.h" diff --git a/lib/irrlicht/source/Irrlicht/CContextEGL.h b/lib/irrlicht/source/Irrlicht/CContextEGL.h index 68b8b481c..6851a2504 100644 --- a/lib/irrlicht/source/Irrlicht/CContextEGL.h +++ b/lib/irrlicht/source/Irrlicht/CContextEGL.h @@ -1,10 +1,19 @@ -// Copyright (C) 2013 Patryk Nadrowski -// Copyright (C) 2016-2017 Dawid Gan -// Heavily based on the OpenGL driver implemented by Nikolaus Gebhardt -// OpenGL ES driver implemented by Christian Stehno and first OpenGL ES 2.0 -// driver implemented by Amundis. -// This file is part of the "Irrlicht Engine". -// For conditions of distribution and use, see copyright notice in Irrlicht.h +// SuperTuxKart - a fun racing game with go-kart +// Copyright (C) 2016-2017 SuperTuxKart-Team +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 3 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef CONTEXT_EGL_HPP #define CONTEXT_EGL_HPP diff --git a/src/main_android.cpp b/src/main_android.cpp index ec3505584..ec44bd126 100644 --- a/src/main_android.cpp +++ b/src/main_android.cpp @@ -1,3 +1,20 @@ +// SuperTuxKart - a fun racing game with go-kart +// Copyright (C) 2016-2017 SuperTuxKart-Team +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 3 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + #ifdef ANDROID #include "config/user_config.hpp"