Changeset 3701 in orxonox.OLD for orxonox/branches/textEngine/src/lib/graphics/font
- Timestamp:
- Mar 31, 2005, 10:27:46 PM (20 years ago)
- Location:
- orxonox/branches/textEngine/src/lib/graphics/font
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/textEngine/src/lib/graphics/font/glfont.cc
r3700 r3701 19 19 20 20 for some fonts and licenses visit: =http://www.dafont.com/en/font.php= 21 22 !! IMPORTANT !! When using ttf fonts clear the license issues prior to 23 adding them to orxonox. This is really important, because we do not 24 want to defend anyone. 21 25 */ 22 26 23 27 /* 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 28 glfont: An example of using the SDL_ttf library with OpenGL. 29 Copyright (C) 1997-2004 Sam Lantinga 30 31 This library is free software; you can redistribute it and/or 32 modify it under the terms of the GNU Library General Public 33 License as published by the Free Software Foundation; either 34 version 2 of the License, or (at your option) any later version. 35 36 This library is distributed in the hope that it will be useful, 37 but WITHOUT ANY WARRANTY; without even the implied warranty of 38 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 39 Library General Public License for more details. 40 41 You should have received a copy of the GNU Library General Public 42 License along with this library; if not, write to the Free 43 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 44 45 The SDL_GL_* functions in this file are available in the public domain. 46 47 Sam Lantinga 48 slouken@libsdl.org 45 49 */ 46 50 -
orxonox/branches/textEngine/src/lib/graphics/font/glfont.h
r3700 r3701 12 12 13 13 /* some default values */ 14 #define FONT_DEFAULT_SIZE 50//!< default size of the Text14 #define FONT_DEFAULT_SIZE 18 //!< default size of the Text 15 15 #define FONT_DEFAULT_TEXT "orxonox 1234567890" //!< some default text to display 16 16 #define FONT_DEFAULT_COLOR_R 256 //!< the default red part (color) of the text
Note: See TracChangeset
for help on using the changeset viewer.