Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
55 pj 1
/* $Id: all.h,v 1.1 2003-02-28 11:42:07 pj Exp $ */
2
 
3
/*
4
 * Mesa 3-D graphics library
5
 * Version:  3.3
6
 * Copyright (C) 1995-2000  Brian Paul
7
 *
8
 * This library is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU Library General Public
10
 * License as published by the Free Software Foundation; either
11
 * version 2 of the License, or (at your option) any later version.
12
 *
13
 * This library is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
 * Library General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU Library General Public
19
 * License along with this library; if not, write to the Free
20
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
 */
22
 
23
 
24
/*
25
 * This file includes all .h files needed for the GLU source code for
26
 * the purpose of precompiled headers.
27
 *
28
 * If the preprocessor symbol PCH is defined at compile time then each
29
 * of the .c files will #include "all.h" only, instead of a bunch of
30
 * individual .h files.
31
 */
32
 
33
 
34
#ifndef GLU_ALL_H
35
#define GLU_ALL_H
36
 
37
 
38
#ifndef PC_HEADER
39
This is an error.  all.h should be included only if PCH is defined.
40
#endif
41
 
42
 
43
#include <assert.h>
44
#include <math.h>
45
#include <stdio.h>
46
#include <stdlib.h>
47
#include <string.h>
48
#include "GL/gl.h"
49
#include "GL/glu.h"
50
#include "gluP.h"
51
#include "nurbs.h"
52
#include "tess.h"
53
 
54
 
55
#endif /*GLU_ALL_H */