libdrawtext
changeset 23:5beaab3df0cb
release 0.2
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 15 Apr 2014 05:34:22 +0300 |
parents | df6d52b36bd6 |
children | bcac948880e3 |
files | README src/drawtext.h src/font.c |
diffstat | 3 files changed, 8 insertions(+), 8 deletions(-) [+] |
line diff
1.1 --- a/README Tue Apr 15 05:10:39 2014 +0300 1.2 +++ b/README Tue Apr 15 05:34:22 2014 +0300 1.3 @@ -1,16 +1,16 @@ 1.4 -libdrawtext - 0.1 1.5 +libdrawtext - 0.2 1.6 ----------------- 1.7 1.8 Libdrawtext is a simple library for fast anti-aliased text rendering in OpenGL. 1.9 1.10 -Copyright (C) 2011-2012 John Tsiombikas <nuclear@member.fsf.org> 1.11 +Copyright (C) 2011-2014 John Tsiombikas <nuclear@member.fsf.org> 1.12 You may freely use, modify and/or redistribute libdrawtext, under the terms of 1.13 the GNU Lesser General Public License (LGPL) version 3 (or at your option, any 1.14 later version published by the Free Software Foundation). See COPYING, and 1.15 COPYING.LESSER for details. 1.16 1.17 Canonical url: http://nuclear.mutantstargoat.com/sw/libdrawtext 1.18 -Mercurial repository: https://nuclear.mutantstargoat.com/hg/libdrawtext 1.19 +Mercurial repository: http://nuclear.mutantstargoat.com/hg/libdrawtext 1.20 1.21 Feel free to send in bug reports, patches, and other comments to 1.22 nuclear@member.fsf.org
2.1 --- a/src/drawtext.h Tue Apr 15 05:10:39 2014 +0300 2.2 +++ b/src/drawtext.h Tue Apr 15 05:34:22 2014 +0300 2.3 @@ -1,6 +1,6 @@ 2.4 /* 2.5 libdrawtext - a simple library for fast text rendering in OpenGL 2.6 -Copyright (C) 2011-2012 John Tsiombikas <nuclear@member.fsf.org> 2.7 +Copyright (C) 2011-2014 John Tsiombikas <nuclear@member.fsf.org> 2.8 2.9 This program is free software: you can redistribute it and/or modify 2.10 it under the terms of the GNU Lesser General Public License as published by 2.11 @@ -15,8 +15,8 @@ 2.12 You should have received a copy of the GNU Lesser General Public License 2.13 along with this program. If not, see <http://www.gnu.org/licenses/>. 2.14 */ 2.15 -#ifndef TEXT_H_ 2.16 -#define TEXT_H_ 2.17 +#ifndef LIBDRAWTEXT_H_ 2.18 +#define LIBDRAWTEXT_H_ 2.19 2.20 #include <stdio.h> 2.21 #include <stdlib.h> 2.22 @@ -185,4 +185,4 @@ 2.23 } 2.24 #endif 2.25 2.26 -#endif /* TEXT_H_ */ 2.27 +#endif /* LIBDRAWTEXT_H_ */
3.1 --- a/src/font.c Tue Apr 15 05:10:39 2014 +0300 3.2 +++ b/src/font.c Tue Apr 15 05:34:22 2014 +0300 3.3 @@ -1,6 +1,6 @@ 3.4 /* 3.5 libdrawtext - a simple library for fast text rendering in OpenGL 3.6 -Copyright (C) 2011 John Tsiombikas <nuclear@member.fsf.org> 3.7 +Copyright (C) 2011-2014 John Tsiombikas <nuclear@member.fsf.org> 3.8 3.9 This program is free software: you can redistribute it and/or modify 3.10 it under the terms of the GNU Lesser General Public License as published by