# HG changeset patch # User John Tsiombikas # Date 1316151727 -10800 # Node ID 7b01e04c9c8b8ac2acb00375be7ab709c391e648 # Parent f9c8eaa9b8d6dcaa2f72637374128cb0c10c4d47 added copyright notices diff -r f9c8eaa9b8d6 -r 7b01e04c9c8b src/drawgl.c --- a/src/drawgl.c Fri Sep 16 08:31:06 2011 +0300 +++ b/src/drawgl.c Fri Sep 16 08:42:07 2011 +0300 @@ -1,3 +1,20 @@ +/* +libdrawtext - a simple library for fast text rendering in OpenGL +Copyright (C) 2011 John Tsiombikas + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with this program. If not, see . +*/ #ifndef NO_OPENGL #include #include diff -r f9c8eaa9b8d6 -r 7b01e04c9c8b src/drawtext.h --- a/src/drawtext.h Fri Sep 16 08:31:06 2011 +0300 +++ b/src/drawtext.h Fri Sep 16 08:42:07 2011 +0300 @@ -1,3 +1,20 @@ +/* +libdrawtext - a simple library for fast text rendering in OpenGL +Copyright (C) 2011 John Tsiombikas + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with this program. If not, see . +*/ #ifndef TEXT_H_ #define TEXT_H_ diff -r f9c8eaa9b8d6 -r 7b01e04c9c8b src/drawtext_impl.h --- a/src/drawtext_impl.h Fri Sep 16 08:31:06 2011 +0300 +++ b/src/drawtext_impl.h Fri Sep 16 08:42:07 2011 +0300 @@ -1,3 +1,20 @@ +/* +libdrawtext - a simple library for fast text rendering in OpenGL +Copyright (C) 2011 John Tsiombikas + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with this program. If not, see . +*/ #ifndef TEXT_IMPL_H_ #define TEXT_IMPL_H_ diff -r f9c8eaa9b8d6 -r 7b01e04c9c8b src/font.c --- a/src/font.c Fri Sep 16 08:31:06 2011 +0300 +++ b/src/font.c Fri Sep 16 08:42:07 2011 +0300 @@ -1,3 +1,20 @@ +/* +libdrawtext - a simple library for fast text rendering in OpenGL +Copyright (C) 2011 John Tsiombikas + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with this program. If not, see . +*/ #ifndef NO_FREETYPE #define USE_FREETYPE #endif diff -r f9c8eaa9b8d6 -r 7b01e04c9c8b src/utf8.c --- a/src/utf8.c Fri Sep 16 08:31:06 2011 +0300 +++ b/src/utf8.c Fri Sep 16 08:42:07 2011 +0300 @@ -1,3 +1,20 @@ +/* +libdrawtext - a simple library for fast text rendering in OpenGL +Copyright (C) 2011 John Tsiombikas + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with this program. If not, see . +*/ #include "drawtext.h" #define U8_IS_FIRST(x) (((((x) >> 7) & 1) == 0) || ((((x) >> 6) & 3) == 3))