-# $Id: Make-config,v 1.67 2002/11/12 02:49:14 brianp Exp $
+# $Id: Make-config,v 1.68 2002/11/14 16:14:52 brianp Exp $
MESA_MAJOR=5
-MESA_MINOR=0
+MESA_MINOR=1
MESA_TINY=0
VERSION=$(MESA_MAJOR).$(MESA_MINOR)
-# $Id: Makefile.X11,v 1.69 2002/11/13 15:33:51 brianp Exp $
+# $Id: Makefile.X11,v 1.70 2002/11/14 16:14:50 brianp Exp $
# Mesa 3-D graphics library
-# Version: 5.0
+# Version: 5.1
#
# Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
#
@echo " make linux for Linux systems, make shared .so libs"
@echo " make linux-static for Linux systems, make static .a libs"
- @echo " make linux-trace for Linux systems, with API trace extension"
@echo " make linux-x86 for Linux on Intel, make shared .so libs"
@echo " make linux-x86-static for Linux on Intel, make static .a libs"
@echo " make linux-ggi for Linux systems with libggi"
cd samples && $(MAKE) -f Makefile.X11 realclean || true
-DIRECTORY = Mesa-5.0
-LIB_NAME = MesaLib-5.0
-DEMO_NAME = MesaDemos-5.0
-GLU_NAME = MesaGLU-5.0
+DIRECTORY = Mesa-5.1
+LIB_NAME = MesaLib-5.1
+DEMO_NAME = MesaDemos-5.1
+GLU_NAME = MesaGLU-5.1
GLUT_NAME = GLUT-3.7
$(DIRECTORY)/missing \
$(DIRECTORY)/mkinstalldirs \
$(DIRECTORY)/stamp-h.in \
+ $(DIRECTORY)/docs/index.html \
$(DIRECTORY)/docs/CONFORM \
$(DIRECTORY)/docs/COPYING \
$(DIRECTORY)/docs/COPYRIGHT \
$(DIRECTORY)/src/SVGA/Makefile.am \
$(DIRECTORY)/src/SVGA/Makefile.in \
$(DIRECTORY)/src/SVGA/*.[ch] \
- $(DIRECTORY)/src/Trace/*.[ch] \
- $(DIRECTORY)/src/Trace/Makefile.am \
- $(DIRECTORY)/src/Trace/Makefile.in \
$(DIRECTORY)/src/Windows/*.[ch] \
$(DIRECTORY)/src/Windows/*.def \
$(DIRECTORY)/src/X/Makefile.am \
-$Id: VERSIONS,v 1.118 2002/11/13 15:33:50 brianp Exp $
+$Id: VERSIONS,v 1.119 2002/11/14 16:14:54 brianp Exp $
Mesa Version History
- fixed one-bit error in point/line fragment Z calculation
- fixed potential segfault in fakeglx code
- fixed color overflow problem in DOT3 texture env mode
+
+
+5.1 Month day, 2003
+ New:
+ -
+ Bug fixes:
+ -
+ Changes:
+ - dropped API trace feature (src/Trace/)
+
-/* $Id: fakeglx.c,v 1.75 2002/11/10 17:07:06 brianp Exp $ */
+/* $Id: fakeglx.c,v 1.76 2002/11/14 16:14:56 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 5.0
+ * Version: 5.1
*
* Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
*
#define SERVER_MINOR_VERSION 4
/* This is appended onto the glXGetClient/ServerString version strings. */
-#define MESA_GLX_VERSION "Mesa 5.0"
+#define MESA_GLX_VERSION "Mesa 5.1"
/* Who implemented this GLX? */
#define VENDOR "Brian Paul"
-/* $Id: get.c,v 1.99 2002/11/08 15:39:58 brianp Exp $ */
+/* $Id: get.c,v 1.100 2002/11/14 16:14:55 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 5.0
+ * Version: 5.1
*
* Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
*
GET_CURRENT_CONTEXT(ctx);
static const char *vendor = "Brian Paul";
static const char *renderer = "Mesa";
- static const char *version_1_2 = "1.2 Mesa 4.1";
- static const char *version_1_3 = "1.3 Mesa 4.1";
- static const char *version_1_4 = "1.4 Mesa 5.0";
+ static const char *version_1_2 = "1.2 Mesa 5.1";
+ static const char *version_1_3 = "1.3 Mesa 5.1";
+ static const char *version_1_4 = "1.4 Mesa 5.1";
ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);