Make sure all source files in qflight have (C) headers.

This commit is contained in:
Bill Currie 2012-12-26 13:05:24 +09:00
parent 4d0a08a052
commit b025e7ba9a
5 changed files with 93 additions and 6 deletions

View File

@ -1,3 +1,32 @@
/*
noise.h
3d noise functions.
Copyright (C) 2000 Seth Galbraith <sgalbrai@linknet.kitsap.lib.wa.us>
Author: Seth Galbraith <sgalbrai@linknet.kitsap.lib.wa.us>
Date: 2000/11/23
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
float noise3d (vec3_t v, int num);
float noiseXYZ (float x, float y, float z, int num);
float noise_scaled (vec3_t v, float s, int num);

View File

@ -1,3 +1,32 @@
/*
properties.c
Light properties handling.
Copyright (C) 2004 Bill Currie <bill@taniwha.org>
Author: Bill Currie <bill@taniwha.org>
Date: 2004/01/27
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
float parse_float (const char *str);
void parse_color (const char *str, vec3_t color);
float parse_light (const char *str, vec3_t color);

View File

@ -1,3 +1,32 @@
/*
noise.c
3d noise functions.
Copyright (C) 2000 Seth Galbraith <sgalbrai@linknet.kitsap.lib.wa.us>
Author: Seth Galbraith <sgalbrai@linknet.kitsap.lib.wa.us>
Date: 2000/11/23
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

View File

@ -1,12 +1,12 @@
/*
#FILENAME#
properties.c
#DESCRIPTION#
Light properties handling.
Copyright (C) 2004 #AUTHOR#
Copyright (C) 2004 Bill Currie <bill@taniwha.org>
Author: #AUTHOR#
Date: #DATE#
Author: Bill Currie <bill@taniwha.org>
Date: 2004/01/27
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View File

@ -1,5 +1,5 @@
/*
trace.c
qflight.c
(description)