summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-09-03 17:50:19 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-09-03 17:50:19 +0000
commit9d4181cd56480f1ecfa39b9220009d2d81e9c50d (patch)
treea2956b2c020d15c14496128cf4099caafd135527
parentcf1dc9faf9ebbbc3ea8da6e11dc5d0a4173599b2 (diff)
version bumps for 4.0.4
-rw-r--r--Make-config4
-rw-r--r--Makefile.X1112
-rw-r--r--docs/README.X116
-rw-r--r--docs/VERSIONS16
-rw-r--r--src/mesa/drivers/x11/fakeglx.c4
5 files changed, 28 insertions, 14 deletions
diff --git a/Make-config b/Make-config
index d3b20b9287..8428567337 100644
--- a/Make-config
+++ b/Make-config
@@ -1,8 +1,8 @@
-# $Id: Make-config,v 1.50.2.10 2002/06/10 17:01:30 brianp Exp $
+# $Id: Make-config,v 1.50.2.11 2002/09/03 17:50:19 brianp Exp $
MESA_MAJOR=4
MESA_MINOR=0
-MESA_TINY=3
+MESA_TINY=4
VERSION=$(MESA_MAJOR).$(MESA_MINOR)
# Mesa 3-D graphics library
diff --git a/Makefile.X11 b/Makefile.X11
index 569aa0dff3..9802d75299 100644
--- a/Makefile.X11
+++ b/Makefile.X11
@@ -1,7 +1,7 @@
-# $Id: Makefile.X11,v 1.56.2.10 2002/06/24 20:44:58 brianp Exp $
+# $Id: Makefile.X11,v 1.56.2.11 2002/09/03 17:50:19 brianp Exp $
# Mesa 3-D graphics library
-# Version: 4.0.3
+# Version: 4.0.4
#
# Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
#
@@ -330,10 +330,10 @@ realclean: clean
-DIRECTORY = Mesa-4.0.3
-LIB_NAME = MesaLib-4.0.3
-DEMO_NAME = MesaDemos-4.0.3
-GLU_NAME = MesaGLU-4.0.3
+DIRECTORY = Mesa-4.0.4
+LIB_NAME = MesaLib-4.0.4
+DEMO_NAME = MesaDemos-4.0.4
+GLU_NAME = MesaGLU-4.0.4
GLUT_NAME = GLUT-3.7
diff --git a/docs/README.X11 b/docs/README.X11
index 647e2a8351..1b3b75d4f5 100644
--- a/docs/README.X11
+++ b/docs/README.X11
@@ -1,5 +1,5 @@
- Mesa 4.0.3 Unix/X11 Information
+ Mesa 4.0.4 Unix/X11 Information
@@ -25,7 +25,7 @@ There are two ways to compile Mesa on Unix/X11 systems:
The top-level makefile will execute the makefiles in a number of sub-
-directories. When finished, the Mesa libraries will be in the Mesa-4.0.3/lib/
+directories. When finished, the Mesa libraries will be in the Mesa-4.0.4/lib/
directory. A few GLUT demos in the demos/ directory should be ready to run.
If you also downloaded and unpacked the demos there should be executables
@@ -323,4 +323,4 @@ Summary of X-related environment variables:
----------------------------------------------------------------------
-$Id: README.X11,v 3.8.2.3 2002/04/26 13:54:47 brianp Exp $
+$Id: README.X11,v 3.8.2.4 2002/09/03 17:50:21 brianp Exp $
diff --git a/docs/VERSIONS b/docs/VERSIONS
index b576ed8ad8..b8661c12a3 100644
--- a/docs/VERSIONS
+++ b/docs/VERSIONS
@@ -1,4 +1,4 @@
-$Id: VERSIONS,v 1.73.2.29 2002/06/25 15:22:12 brianp Exp $
+$Id: VERSIONS,v 1.73.2.30 2002/09/03 17:50:21 brianp Exp $
Mesa Version History
@@ -981,3 +981,17 @@ Mesa Version History
- lots of T&L updates for the Radeon DRI driver
Known bugs:
- mipmap LOD computation (fixed for Mesa 4.1)
+
+
+4.0.4 September ??, 2002
+ New:
+ - GL_NV_texture_rectangle extension
+ - updated glext.h header (version 16)
+ Bug fixes:
+ - fixed GL_LINEAR fog bug by adding clamping
+ - fixed FP exceptions found using Alpha CPU
+ - 3dfx MESA_GLX_FX=window (render to window) didn't work
+ - fixed memory leak in wglCreateContest (Karl Schultz)
+ - define GLAPIENTRY and GLAPI if undefined in glu.h
+ Changes:
+ - max texture units reduced to six to accomodate texture rectangles
diff --git a/src/mesa/drivers/x11/fakeglx.c b/src/mesa/drivers/x11/fakeglx.c
index d900c0c105..e1e713795c 100644
--- a/src/mesa/drivers/x11/fakeglx.c
+++ b/src/mesa/drivers/x11/fakeglx.c
@@ -1,7 +1,7 @@
/*
* Mesa 3-D graphics library
- * Version: 4.0.3
+ * Version: 4.0.4
*
* Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
*
@@ -65,7 +65,7 @@
#define SERVER_MINOR_VERSION 4
/* This is appended onto the glXGetClient/ServerString version strings. */
-#define MESA_GLX_VERSION "Mesa 4.0.3"
+#define MESA_GLX_VERSION "Mesa 4.0.4"
/* Who implemented this GLX? */
#define VENDOR "Brian Paul"