-/* $Id: osmesa.c,v 1.22 2000/09/28 22:44:31 brianp Exp $ */
+/* $Id: osmesa.c,v 1.23 2000/10/29 18:23:28 brianp Exp $ */
/*
* Mesa 3-D graphics library
#include "GL/osmesa.h"
#include "context.h"
#include "depth.h"
+#include "macros.h"
#include "mem.h"
#include "matrix.h"
#include "types.h"
-/* $Id: accum.c,v 1.28 2000/10/28 18:34:48 brianp Exp $ */
+/* $Id: accum.c,v 1.29 2000/10/29 18:23:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
#include "glheader.h"
#include "accum.h"
#include "context.h"
+#include "macros.h"
#include "mem.h"
#include "masking.h"
#include "span.h"
-/* $Id: config.h,v 1.22 2000/10/29 18:12:14 brianp Exp $ */
+/* $Id: config.h,v 1.23 2000/10/29 18:23:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
#define VB_SIZE (VB_MAX + VB_MAX_CLIPPED_VERTS)
+/*
+ * Language/compiler stuff
+ */
+
/* Some compilers don't like some of Mesa's const usage */
#ifdef NO_CONST
# define CONST
#endif
+/* Function inlining */
+#if defined(__GNUC__)
+# define INLINE __inline__
+#elif defined(__MSC__)
+# define INLINE __inline
+#else
+# define INLINE
+#endif
+
+
+#ifdef DEBUG
+# define ASSERT(X) assert(X)
+#else
+# define ASSERT(X)
+#endif
+
+
#endif
-/* $Id: depth.c,v 1.19 2000/09/26 20:53:53 brianp Exp $ */
+/* $Id: depth.c,v 1.20 2000/10/29 18:23:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
#include "context.h"
#include "enums.h"
#include "depth.h"
+#include "macros.h"
#include "mem.h"
#include "pb.h"
#include "types.h"
-/* $Id: macros.h,v 1.11 2000/10/28 20:41:14 brianp Exp $ */
+/* $Id: macros.h,v 1.12 2000/10/29 18:23:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
#include "glheader.h"
-#ifdef DEBUG
-# define ASSERT(X) assert(X)
-#else
-# define ASSERT(X)
-#endif
-
-
-#if defined(__GNUC__)
-#define INLINE __inline__
-#elif defined(__MSC__)
-#define INLINE __inline
-#else
-#define INLINE
-#endif
-
-
/* Limits: */
#define MAX_GLUSHORT 0xffff
#define MAX_GLUINT 0xffffffff
-/* Some compilers don't like some of Mesa's const usage */
-#ifdef NO_CONST
-# define CONST
-#else
-# define CONST const
-#endif
-
-
/* Pi */
#ifndef M_PI
#define M_PI (3.1415926)
-/* $Id: matrix.c,v 1.21 2000/09/26 20:53:53 brianp Exp $ */
+/* $Id: matrix.c,v 1.22 2000/10/29 18:23:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
#include "buffers.h"
#include "context.h"
#include "enums.h"
+#include "macros.h"
#include "matrix.h"
#include "mem.h"
#include "mmath.h"
-/* $Id: stencil.c,v 1.19 2000/09/26 20:53:53 brianp Exp $ */
+/* $Id: stencil.c,v 1.20 2000/10/29 18:23:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
#include "glheader.h"
#include "context.h"
#include "depth.h"
+#include "macros.h"
#include "mem.h"
#include "pb.h"
#include "stencil.h"
-/* $Id: teximage.c,v 1.54 2000/10/29 18:12:15 brianp Exp $ */
+/* $Id: teximage.c,v 1.55 2000/10/29 18:23:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
#include "context.h"
#include "convolve.h"
#include "image.h"
+#include "macros.h"
#include "mem.h"
#include "mmath.h"
#include "span.h"
-/* $Id: texobj.c,v 1.29 2000/10/24 02:53:18 brianp Exp $ */
+/* $Id: texobj.c,v 1.30 2000/10/29 18:23:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
#include "context.h"
#include "enums.h"
#include "hash.h"
+#include "macros.h"
#include "mem.h"
#include "teximage.h"
#include "texstate.h"