From f098a871fc6dc7b61a5aca5581fa327e4124c036 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Mon, 3 Sep 2007 10:33:27 +0000 Subject: [PATCH] Add Id tags and copyright notices to files --- Build | 2 ++ source/error.h | 7 +++++++ source/font.cpp | 7 +++++++ source/font.h | 11 +++++++++-- source/matrix.h | 7 +++++++ source/misc.cpp | 7 +++++++ source/misc.h | 7 +++++++ source/rendermode.cpp | 7 +++++++ source/rendermode.h | 7 +++++++ source/select.cpp | 7 +++++++ source/select.h | 7 +++++++ source/texenv.h | 7 +++++++ source/texture.cpp | 7 +++++++ source/texture.h | 7 +++++++ source/texture2d.cpp | 7 +++++++ source/texture2d.h | 7 +++++++ source/texunit.cpp | 7 +++++++ source/texunit.h | 7 +++++++ source/transform.cpp | 7 +++++++ source/transform.h | 7 +++++++ source/types.h | 7 +++++++ source/vertexarray.cpp | 7 +++++++ source/vertexarray.h | 7 +++++++ source/vertexbuffer.cpp | 7 +++++++ source/vertexbuffer.h | 7 +++++++ 25 files changed, 172 insertions(+), 2 deletions(-) diff --git a/Build b/Build index e8c0420f..63c10cd8 100644 --- a/Build +++ b/Build @@ -1,3 +1,5 @@ +/* $Id$ */ + package "mspgl" { description "C++ wrappers for OpenGL"; diff --git a/source/error.h b/source/error.h index 8ead50d8..61799032 100644 --- a/source/error.h +++ b/source/error.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_ERROR_H_ #define MSP_GL_ERROR_H_ diff --git a/source/font.cpp b/source/font.cpp index 3b02583b..7cea8695 100644 --- a/source/font.cpp +++ b/source/font.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include #include "font.h" #include "texture2d.h" diff --git a/source/font.h b/source/font.h index 7307122a..a5593351 100644 --- a/source/font.h +++ b/source/font.h @@ -1,5 +1,12 @@ -#ifndef FONT_H_ -#define FONT_H_ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + +#ifndef MSP_GL_FONT_H_ +#define MSP_GL_FONT_H_ #include #include diff --git a/source/matrix.h b/source/matrix.h index 66848b2d..7dd08f23 100644 --- a/source/matrix.h +++ b/source/matrix.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_MATRIX_H_ #define MSP_GL_MATRIX_H_ diff --git a/source/misc.cpp b/source/misc.cpp index b99310a9..67b2a142 100644 --- a/source/misc.cpp +++ b/source/misc.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include "misc.h" namespace Msp { diff --git a/source/misc.h b/source/misc.h index 49c6cf5b..87690477 100644 --- a/source/misc.h +++ b/source/misc.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_MISC_H_ #define MSP_GL_MISC_H_ diff --git a/source/rendermode.cpp b/source/rendermode.cpp index cef0b376..e7efd0c3 100644 --- a/source/rendermode.cpp +++ b/source/rendermode.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include "rendermode.h" #include "select.h" diff --git a/source/rendermode.h b/source/rendermode.h index cb8670c8..be893b21 100644 --- a/source/rendermode.h +++ b/source/rendermode.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_RENDERMODE_H_ #define MSP_GL_RENDERMODE_H_ diff --git a/source/select.cpp b/source/select.cpp index 60838e68..f19dd3ef 100644 --- a/source/select.cpp +++ b/source/select.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include #include "error.h" #include "select.h" diff --git a/source/select.h b/source/select.h index e862fe5c..2ca28193 100644 --- a/source/select.h +++ b/source/select.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_SELECT_H_ #define MSP_GL_SELECT_H_ diff --git a/source/texenv.h b/source/texenv.h index fbacff3f..6d0eba9f 100644 --- a/source/texenv.h +++ b/source/texenv.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_TEXENV_H_ #define MSP_GL_TEXENV_H_ diff --git a/source/texture.cpp b/source/texture.cpp index c367397f..c6aea2c8 100644 --- a/source/texture.cpp +++ b/source/texture.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include #include "texture.h" #include "texunit.h" diff --git a/source/texture.h b/source/texture.h index cccf35b0..55eda001 100644 --- a/source/texture.h +++ b/source/texture.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_TEXTURE_H_ #define MSP_GL_TEXTURE_H_ diff --git a/source/texture2d.cpp b/source/texture2d.cpp index e8c18bb8..52144e59 100644 --- a/source/texture2d.cpp +++ b/source/texture2d.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include #include #include "texture2d.h" diff --git a/source/texture2d.h b/source/texture2d.h index ef6261cb..e06ea920 100644 --- a/source/texture2d.h +++ b/source/texture2d.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_TEXTURE2D_H_ #define MSP_GL_TEXTURE2D_H_ diff --git a/source/texunit.cpp b/source/texunit.cpp index fd0fe314..91a33ecc 100644 --- a/source/texunit.cpp +++ b/source/texunit.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #define GL_GLEXT_PROTOTYPES #include #include diff --git a/source/texunit.h b/source/texunit.h index 5aec5b31..0bdb2159 100644 --- a/source/texunit.h +++ b/source/texunit.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_TEXUNIT_H_ #define MSP_GL_TEXUNIT_H_ diff --git a/source/transform.cpp b/source/transform.cpp index 6361fc50..78c3fb0f 100644 --- a/source/transform.cpp +++ b/source/transform.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include #include "transform.h" diff --git a/source/transform.h b/source/transform.h index 520cf3be..35dc5631 100644 --- a/source/transform.h +++ b/source/transform.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_TRANSFORM_H_ #define MSP_GL_TRANSFORM_H_ diff --git a/source/types.h b/source/types.h index adfd7deb..4fd2d4b0 100644 --- a/source/types.h +++ b/source/types.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_TYPES_H_ #define MSP_GL_TYPES_H_ diff --git a/source/vertexarray.cpp b/source/vertexarray.cpp index 5d5c244a..3c94b4cf 100644 --- a/source/vertexarray.cpp +++ b/source/vertexarray.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include #include "vertexarray.h" #include "vertexbuffer.h" diff --git a/source/vertexarray.h b/source/vertexarray.h index 23d53be0..52b88882 100644 --- a/source/vertexarray.h +++ b/source/vertexarray.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_VERTEXARRAY_H_ #define MSP_GL_VERTEXARRAY_H_ diff --git a/source/vertexbuffer.cpp b/source/vertexbuffer.cpp index 4385c2f1..c10dec40 100644 --- a/source/vertexbuffer.cpp +++ b/source/vertexbuffer.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #define GL_GLEXT_PROTOTYPES #include //XXX gl.h seems to include glext.h, but can I rely on this? diff --git a/source/vertexbuffer.h b/source/vertexbuffer.h index 22fcdfb1..3b1344f9 100644 --- a/source/vertexbuffer.h +++ b/source/vertexbuffer.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspgl +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_GL_VERTEXBUFFER_H_ #define MSP_GL_VERTEXBUFFER_H_ -- 2.43.0