diff --git a/api/ttfont.cpp b/api/ttfont.cpp index 2c46a5a84b..d129fb18cd 100644 --- a/api/ttfont.cpp +++ b/api/ttfont.cpp @@ -1,3 +1,21 @@ +// This file is part of BOINC. +// http://boinc.berkeley.edu +// Copyright (C) 2010 University of California +// +// BOINC 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. +// +// BOINC 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 BOINC. If not, see . + + // utility functions for TrueType font OpenGL graphics // FTGL OpenGL TrueType/FreeType font rendering @@ -10,7 +28,7 @@ // this should basically be a drop-in for the old boinc txf_* functions i.e. // txf_load_fonts and txf_render_string, with extra options on the latter for rotating etc -// adapted by Carl Christensen, freely released under LGPL for BOINC +// adapted by Carl Christensen #include "ttfont.h" #include "filesys.h" // from boinc for file_exists diff --git a/api/ttfont.h b/api/ttfont.h index 8726133ba0..d5eae24874 100644 --- a/api/ttfont.h +++ b/api/ttfont.h @@ -1,3 +1,21 @@ +// This file is part of BOINC. +// http://boinc.berkeley.edu +// Copyright (C) 2010 University of California +// +// BOINC 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. +// +// BOINC 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 BOINC. If not, see . + + // utility functions for TrueType font OpenGL graphics // FTGL OpenGL TrueType/FreeType font rendering @@ -10,7 +28,7 @@ // this should basically be a drop-in for the old boinc txf_* functions i.e. // txf_load_font and txf_render_string, with extra options on the latter for rotating etc -// adapted by Carl Christensen, freely released under LGPL for BOINC +// adapted by Carl Christensen #ifndef _TTFONT_H_