From patchwork Thu Jul 21 12:36:33 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Alexandros Frantzis X-Patchwork-Id: 2973 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 E6AE723F52 for ; Thu, 21 Jul 2011 12:43:26 +0000 (UTC) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.216.173]) by fiordland.canonical.com (Postfix) with ESMTP id 94BABA18287 for ; Thu, 21 Jul 2011 12:43:26 +0000 (UTC) Received: by mail-qy0-f173.google.com with SMTP id 10so3962504qyk.11 for ; Thu, 21 Jul 2011 05:43:26 -0700 (PDT) Received: by 10.229.25.212 with SMTP id a20mr174814qcc.148.1311252206371; Thu, 21 Jul 2011 05:43:26 -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 hl14cs139540qcb; Thu, 21 Jul 2011 05:43:26 -0700 (PDT) Received: by 10.227.198.197 with SMTP id ep5mr196392wbb.33.1311251796365; 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 16si2382952wbx.75.2011.07.21.05.36.35; 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 1QjsUU-0000D2-Dm for ; Thu, 21 Jul 2011 12:36:34 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id A70282E8954 for ; Thu, 21 Jul 2011 12:36:33 +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: 50 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~glmark2-dev/glmark2/trunk] Rev 50: Add license headers to source files. Message-Id: <20110721123633.17019.94300.launchpad@loganberry.canonical.com> Date: Thu, 21 Jul 2011 12:36:33 -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: b806a5b2c6819106059d7b27dcc9e3986391085d ------------------------------------------------------------ revno: 50 committer: Alexandros Frantzis timestamp: Tue 2010-07-13 13:22:05 +0300 message: Add license headers to source files. 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 2010-07-12 14:03:14 +0000 +++ src/main.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "oglsdl.h" #include "scene.h" === modified file 'src/matrix.cpp' --- src/matrix.cpp 2010-07-12 10:06:29 +0000 +++ src/matrix.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,23 @@ +/* + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Alexandros Frantzis (glmark2) + */ #include "matrix.h" /** === modified file 'src/matrix.h' --- src/matrix.h 2010-07-12 10:06:29 +0000 +++ src/matrix.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,23 @@ +/* + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Alexandros Frantzis (glmark2) + */ #ifndef _MATRIX_H #define _MATRIX_H === modified file 'src/mesh.cpp' --- src/mesh.cpp 2010-07-12 10:06:29 +0000 +++ src/mesh.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "mesh.h" #include "shader.h" === modified file 'src/mesh.h' --- src/mesh.h 2010-07-12 10:06:29 +0000 +++ src/mesh.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _MESH_H #define _MESH_H === modified file 'src/model.cpp' --- src/model.cpp 2010-07-12 10:06:29 +0000 +++ src/model.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "model.h" long filelength(int f) === modified file 'src/model.h' --- src/model.h 2010-07-12 10:06:29 +0000 +++ src/model.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _MODEL_H #define _MODEL_H === modified file 'src/oglsdl.h' --- src/oglsdl.h 2010-07-12 10:06:29 +0000 +++ src/oglsdl.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _OGLSDL_H #define _OGLSDL_H === modified file 'src/scene.cpp' --- src/scene.cpp 2010-07-12 10:06:29 +0000 +++ src/scene.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "scene.h" Scene::Scene(Screen &pScreen) : === modified file 'src/scene.h' --- src/scene.h 2010-07-12 10:06:29 +0000 +++ src/scene.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _SCENE_H #define _SCENE_H === modified file 'src/scenebuild.cpp' --- src/scenebuild.cpp 2010-07-12 10:06:29 +0000 +++ src/scenebuild.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "scene.h" SceneBuild::~SceneBuild() === modified file 'src/sceneshading.cpp' --- src/sceneshading.cpp 2010-07-12 15:52:43 +0000 +++ src/sceneshading.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "scene.h" #include "matrix.h" === modified file 'src/scenetexture.cpp' --- src/scenetexture.cpp 2010-07-12 10:06:29 +0000 +++ src/scenetexture.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "scene.h" #include "matrix.h" === modified file 'src/screen-sdl-gl.cpp' --- src/screen-sdl-gl.cpp 2010-07-12 13:37:04 +0000 +++ src/screen-sdl-gl.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "screen-sdl-gl.h" ScreenSDLGL::ScreenSDLGL(int pWidth, int pHeight, int pBpp, int pFullScreen, int pFlags) === modified file 'src/screen-sdl-gl.h' --- src/screen-sdl-gl.h 2010-07-12 12:15:52 +0000 +++ src/screen-sdl-gl.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _SCREEN_SDL_GL_H #define _SCREEN_SDL_GL_H === modified file 'src/screen-sdl-glesv2.cpp' --- src/screen-sdl-glesv2.cpp 2010-07-12 13:37:04 +0000 +++ src/screen-sdl-glesv2.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "screen-sdl-glesv2.h" #include "sdlgles/SDL_gles.h" === modified file 'src/screen-sdl-glesv2.h' --- src/screen-sdl-glesv2.h 2010-07-12 13:37:04 +0000 +++ src/screen-sdl-glesv2.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _SCREEN_SDL_GLESv2_H #define _SCREEN_SDL_GLESv2_H === modified file 'src/screen-sdl.cpp' --- src/screen-sdl.cpp 2010-07-12 12:15:52 +0000 +++ src/screen-sdl.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "screen-sdl.h" ScreenSDL::ScreenSDL(int pWidth, int pHeight, int pBpp, int pFullScreen, int pFlags) === modified file 'src/screen-sdl.h' --- src/screen-sdl.h 2010-07-12 12:15:52 +0000 +++ src/screen-sdl.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _SCREEN_SDL_H #define _SCREEN_SDL_H === modified file 'src/screen.h' --- src/screen.h 2010-07-12 12:15:52 +0000 +++ src/screen.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _SCREEN_H #define _SCREEN_H === modified file 'src/shader.cpp' --- src/shader.cpp 2010-07-12 16:14:14 +0000 +++ src/shader.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "shader.h" char *readShaderFile(const char *FileName) === modified file 'src/shader.h' --- src/shader.h 2010-07-12 10:06:29 +0000 +++ src/shader.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _SHADER_H #define _SHADER_H === modified file 'src/texture.cpp' --- src/texture.cpp 2010-07-12 15:48:05 +0000 +++ src/texture.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "texture.h" int load_texture(const char pFilename[], GLuint *pTexture) === modified file 'src/texture.h' --- src/texture.h 2010-07-12 10:06:29 +0000 +++ src/texture.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _TEXTURE_H #define _TEXTURE_H === modified file 'src/vector.cpp' --- src/vector.cpp 2010-07-12 10:06:29 +0000 +++ src/vector.cpp 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #include "vector.h" Vector3f::Vector3f() === modified file 'src/vector.h' --- src/vector.h 2010-07-12 10:06:29 +0000 +++ src/vector.h 2010-07-13 10:22:05 +0000 @@ -1,3 +1,25 @@ +/* + * Copyright © 2008 Ben Smith + * Copyright © 2010 Linaro + * + * 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. + * + * glmark2 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 + * glmark2. If not, see . + * + * Authors: + * Ben Smith (original glmark benchmark) + * Alexandros Frantzis (glmark2) + */ #ifndef _VECTOR_H #define _VECTOR_H