Add Mesa & SGI's GLU copyrights.

Still need to investigate about precise GLUT copyright(s) situation.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13287 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin 2005-06-26 22:07:18 +00:00
parent 0017390797
commit 75480b6bf8

View File

@ -345,13 +345,6 @@ AboutView::AboutView(const BRect &r)
fCreditsView->SetFontAndColor(be_plain_font);
fCreditsView->Insert("Michael Phipps (project founder)\n\n");
/*
// TODO: Add these (somehow)
Brian Paul (Mesa)
Silicon Graphics Inc. (GLU)
Mark Kilgard & Be Inc. & Jam Hamby (GLUT)
*/
font.SetSize(be_bold_font->Size() + 2);
font.SetFace(B_BOLD_FACE);
fCreditsView->SetFontAndColor(&font);
@ -380,6 +373,40 @@ AboutView::AboutView(const BRect &r)
fCreditsView->SetFontAndColor(be_plain_font);
fCreditsView->Insert("Portions of this software are copyright (C) 1996-2002 The FreeType"
" Project (www.freetype.org). All rights reserved.\n\n");
// Mesa3D (http://www.mesa3d.org) copyrights
font.SetFace(B_ITALIC_FACE);
fCreditsView->SetFontAndColor(&font);
fCreditsView->Insert("Mesa\n");
fCreditsView->SetFontAndColor(be_plain_font);
fCreditsView->Insert(
"Copyright (c) 1999-2005 Brian Paul. "
"All rights reserved.\n\n");
// SGI's GLU implementation copyrights
font.SetFace(B_ITALIC_FACE);
fCreditsView->SetFontAndColor(&font);
fCreditsView->Insert("GLU\n");
fCreditsView->SetFontAndColor(be_plain_font);
fCreditsView->Insert(
"Copyright (c) 1991-2000 Silicon Graphics, Inc."
"All rights reserved.\n\n");
/*
// TODO: Add these (somehow)
Mark Kilgard & Be Inc. & Jam Hamby (GLUT)
// GLUT implementation copyrights
font.SetFace(B_ITALIC_FACE);
fCreditsView->SetFontAndColor(&font);
fCreditsView->Insert("GLUT\n");
fCreditsView->SetFontAndColor(be_plain_font);
fCreditsView->Insert(
"Copyright (c) 1991-2000 Silicon Graphics, Inc."
"All rights reserved.\n"
*/
}