From patchwork Thu Jul 21 12:36:35 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: alexandros.frantzis@linaro.org X-Patchwork-Id: 3005 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id AA38823F52 for ; Thu, 21 Jul 2011 12:44:31 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id 7892FA18287 for ; Thu, 21 Jul 2011 12:44:31 +0000 (UTC) Received: by mail-qy0-f180.google.com with SMTP id 30so845420qyk.11 for ; Thu, 21 Jul 2011 05:44:31 -0700 (PDT) Received: by 10.229.25.212 with SMTP id a20mr175661qcc.148.1311252269916; Thu, 21 Jul 2011 05:44:29 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.217.78 with SMTP id hl14cs139592qcb; Thu, 21 Jul 2011 05:44:29 -0700 (PDT) Received: by 10.227.200.210 with SMTP id ex18mr206623wbb.7.1311251796995; Thu, 21 Jul 2011 05:36:36 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id gb12si2377409wbb.102.2011.07.21.05.36.36; Thu, 21 Jul 2011 05:36:36 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QjsUV-0000DH-Co for ; Thu, 21 Jul 2011 12:36:35 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 3FECA2E84FB for ; Thu, 21 Jul 2011 12:36:35 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: glmark2 X-Launchpad-Branch: ~glmark2-dev/glmark2/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 73 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~glmark2-dev/glmark2/trunk] Rev 73: Update copyright for 2011. Message-Id: <20110721123635.17019.45578.launchpad@loganberry.canonical.com> Date: Thu, 21 Jul 2011 12:36:35 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13475"; Instance="initZopeless config overlay" X-Launchpad-Hash: cfd27b35c4611cbc47735dc0fef59a8caeb5e05f ------------------------------------------------------------ revno: 73 committer: Alexandros Frantzis timestamp: Tue 2011-01-25 17:00:12 +0200 message: Update copyright for 2011. Update license to GPL-3+ (instead of just GPL-3). modified: src/main.cpp src/matrix.cpp src/matrix.h src/mesh.cpp src/mesh.h src/model.cpp src/model.h src/oglsdl.h src/scene.cpp src/scene.h src/scenebuild.cpp src/sceneshading.cpp src/scenetexture.cpp src/screen-sdl-gl.cpp src/screen-sdl-gl.h src/screen-sdl-glesv2.cpp src/screen-sdl-glesv2.h src/screen-sdl.cpp src/screen-sdl.h src/screen.h src/shader.cpp src/shader.h src/texture.cpp src/texture.h src/vector.cpp src/vector.h --- lp:glmark2 https://code.launchpad.net/~glmark2-dev/glmark2/trunk You are subscribed to branch lp:glmark2. To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription === modified file 'src/main.cpp' --- src/main.cpp 2011-01-25 14:00:35 +0000 +++ src/main.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/matrix.cpp' --- src/matrix.cpp 2010-11-19 12:03:25 +0000 +++ src/matrix.cpp 2011-01-25 15:00:12 +0000 @@ -1,11 +1,12 @@ /* - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/matrix.h' --- src/matrix.h 2010-07-13 10:22:05 +0000 +++ src/matrix.h 2011-01-25 15:00:12 +0000 @@ -1,11 +1,12 @@ /* - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/mesh.cpp' --- src/mesh.cpp 2010-11-19 12:03:25 +0000 +++ src/mesh.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/mesh.h' --- src/mesh.h 2010-11-19 12:03:25 +0000 +++ src/mesh.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/model.cpp' --- src/model.cpp 2010-11-19 12:03:25 +0000 +++ src/model.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/model.h' --- src/model.h 2010-07-13 10:22:05 +0000 +++ src/model.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/oglsdl.h' --- src/oglsdl.h 2010-07-13 10:22:05 +0000 +++ src/oglsdl.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/scene.cpp' --- src/scene.cpp 2010-11-19 12:03:25 +0000 +++ src/scene.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/scene.h' --- src/scene.h 2010-07-13 10:22:05 +0000 +++ src/scene.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/scenebuild.cpp' --- src/scenebuild.cpp 2011-01-25 14:00:35 +0000 +++ src/scenebuild.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/sceneshading.cpp' --- src/sceneshading.cpp 2011-01-25 14:00:35 +0000 +++ src/sceneshading.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/scenetexture.cpp' --- src/scenetexture.cpp 2011-01-25 14:00:35 +0000 +++ src/scenetexture.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/screen-sdl-gl.cpp' --- src/screen-sdl-gl.cpp 2010-07-13 10:22:05 +0000 +++ src/screen-sdl-gl.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/screen-sdl-gl.h' --- src/screen-sdl-gl.h 2010-07-13 10:22:05 +0000 +++ src/screen-sdl-gl.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/screen-sdl-glesv2.cpp' --- src/screen-sdl-glesv2.cpp 2010-11-19 18:09:32 +0000 +++ src/screen-sdl-glesv2.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/screen-sdl-glesv2.h' --- src/screen-sdl-glesv2.h 2010-07-13 10:22:05 +0000 +++ src/screen-sdl-glesv2.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/screen-sdl.cpp' --- src/screen-sdl.cpp 2010-07-15 09:05:21 +0000 +++ src/screen-sdl.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/screen-sdl.h' --- src/screen-sdl.h 2010-07-13 10:22:05 +0000 +++ src/screen-sdl.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/screen.h' --- src/screen.h 2010-07-13 10:22:05 +0000 +++ src/screen.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/shader.cpp' --- src/shader.cpp 2011-01-25 11:19:56 +0000 +++ src/shader.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/shader.h' --- src/shader.h 2010-07-13 10:22:05 +0000 +++ src/shader.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/texture.cpp' --- src/texture.cpp 2010-07-13 10:22:05 +0000 +++ src/texture.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/texture.h' --- src/texture.h 2010-07-13 10:22:05 +0000 +++ src/texture.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/vector.cpp' --- src/vector.cpp 2010-07-13 10:22:05 +0000 +++ src/vector.cpp 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS === modified file 'src/vector.h' --- src/vector.h 2010-07-13 10:22:05 +0000 +++ src/vector.h 2011-01-25 15:00:12 +0000 @@ -1,12 +1,13 @@ /* * Copyright © 2008 Ben Smith - * Copyright © 2010 Linaro + * Copyright © 2010-2011 Linaro Limited * * This file is part of the glmark2 OpenGL (ES) 2.0 benchmark. * * glmark2 is free software: you can redistribute it and/or modify it under the - * terms of the GNU General Public License version 3, as published by the Free - * Software Foundation. + * 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. * * glmark2 is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS