~ubuntu-branches/ubuntu/quantal/mesa/quantal

« back to all changes in this revision

Viewing changes to src/glu/mini/all.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-21 12:44:07 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20070221124407-rgcacs32mycrtadl
ImportĀ upstreamĀ versionĀ 6.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: all.h,v 1.2 2003-08-22 20:11:43 brianp 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 */