Browse Source

header includes clean-up (Daryll)

tags/mesa_3_1
Brian Paul 26 years ago
parent
commit
c00c0b323f
2 changed files with 6 additions and 9 deletions
  1. 1
    4
      src/mesa/main/eval.c
  2. 5
    5
      src/mesa/main/macros.h

+ 1
- 4
src/mesa/main/eval.c View File

@@ -1,4 +1,4 @@
/* $Id: eval.c,v 1.5 1999/10/19 18:37:03 keithw Exp $ */
/* $Id: eval.c,v 1.6 1999/11/08 15:30:05 brianp Exp $ */

/*
* Mesa 3-D graphics library
@@ -56,9 +56,6 @@
#include "vbcull.h"
#include "vbfill.h"
#include "vbxform.h"
#ifdef XFree86Server
#include "GL/xf86glx.h"
#endif
#endif



+ 5
- 5
src/mesa/main/macros.h View File

@@ -1,4 +1,4 @@
/* $Id: macros.h,v 1.5 1999/10/13 18:42:50 brianp Exp $ */
/* $Id: macros.h,v 1.6 1999/11/08 15:29:43 brianp Exp $ */

/*
* Mesa 3-D graphics library
@@ -36,16 +36,16 @@
#ifndef MACROS_H
#define MACROS_H

#if defined( XFree86LOADER ) && defined( XFree86Server )
#include <GL/glx_ansic.h>
#else
#ifndef XFree86Server
#include <assert.h>
#include <math.h>
#include <string.h>
#else
#include <GL/glx_ansic.h>
#endif


#ifdef DEBUG
# include <assert.h>
# define ASSERT(X) assert(X)
#else
# define ASSERT(X)

Loading…
Cancel
Save