add missing copyright statements
This commit is contained in:
parent
e675f80a66
commit
ffb1515aa4
1 changed files with 45 additions and 0 deletions
|
@ -1,6 +1,11 @@
|
|||
#include <plib/pu.h>
|
||||
#include <plib/fnt.h>
|
||||
|
||||
/**
|
||||
* fonts.cxx generated by the genfonts utility by Pawel W. Olszta.
|
||||
* See its source file genfonts.c for copyright ownership.
|
||||
*/
|
||||
|
||||
|
||||
struct SFG_Font {
|
||||
char* Name; /* The source font name */
|
||||
|
@ -10,6 +15,15 @@ struct SFG_Font {
|
|||
float xorig, yorig; /* Relative origin of the character */
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Helvetica 14 (-Adobe-Helvetica-Medium-R-Normal--14-140-75-75-P-77-ISO8859-1)
|
||||
*
|
||||
* Copyright (c) 1984, 1987 Adobe Systems Incorporated. All Rights Reserved.
|
||||
* Copyright (c) 1988, 1991 Digital Equipment Corporation. All Rights Reserved.
|
||||
* Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries.
|
||||
*/
|
||||
|
||||
static const GLubyte Helvetica14_Char_032[] = { 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
static const GLubyte Helvetica14_Char_033[] = { 3, 0, 0, 0,128,128, 0,128,128,128,128,128,128,128,128, 0, 0, 0};
|
||||
static const GLubyte Helvetica14_Char_034[] = { 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,160,160, 0, 0, 0};
|
||||
|
@ -305,6 +319,37 @@ const SFG_Font fgFontHelvetica14 = {"-adobe-helvetica-medium-r-*-*-*-140-75-75-*
|
|||
static fntBitmapFont fntHelvetica14(fgFontHelvetica14.Characters, 1,
|
||||
fgFontHelvetica14.Height, fgFontHelvetica14.xorig, fgFontHelvetica14.yorig);
|
||||
|
||||
|
||||
/**
|
||||
* Bitstream Vera 12 Bold:
|
||||
*
|
||||
* Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
|
||||
* Bitstream Vera Sans Bold
|
||||
* Release 1.10
|
||||
* Bitstream Vera is a trademark of Bitstream, Inc.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the fonts accompanying this license ("Fonts") and associated documentation
|
||||
* files (the "Font Software"), to reproduce and distribute the Font Software,
|
||||
* including without limitation the rights to use, copy, merge, publish, distribute,
|
||||
* and/or sell copies of the Font Software, and to permit persons to whom the Font
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright and trademark notices and this permission notice shall be
|
||||
* included in all copies of one or more of the Font Software typefaces.
|
||||
|
||||
* The Font Software may be modified, altered, or added to, and in particular the
|
||||
* designs of glyphs or characters in the Fonts may be modified and additional
|
||||
* glyphs or characters may be added to the Fonts, only if the fonts are renamed
|
||||
* to names not containing either the words "Bitstream" or the word "Vera".
|
||||
*
|
||||
* This License becomes null and void to the extent applicable to Fonts or Font
|
||||
* Software that has been modified and is distributed under the "Bitstream Vera" names.
|
||||
*
|
||||
* The Font Software may be sold as part of a larger software package but no
|
||||
* copy of one or more of the Font Software typefaces may be sold by itself.
|
||||
*/
|
||||
|
||||
static const GLubyte Vera12B_Char_032[] = { 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
static const GLubyte Vera12B_Char_033[] = { 4, 0, 0, 0,192,192, 0,192,192,192,192,192,192, 0, 0, 0};
|
||||
static const GLubyte Vera12B_Char_034[] = { 5, 0, 0, 0, 0, 0, 0, 0, 0,160,160,160,160, 0, 0, 0};
|
||||
|
|
Loading…
Reference in a new issue