version bumps, etc for 4.1

This commit is contained in:
Brian Paul
2001-10-22 22:45:18 +00:00
parent a7f8117153
commit 3de5462ab1
5 changed files with 19 additions and 12 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
# $Id: Make-config,v 1.50 2001/09/24 19:18:03 brianp Exp $
# $Id: Make-config,v 1.51 2001/10/22 22:45:18 brianp Exp $
MESA_MAJOR=4
MESA_MINOR=0
MESA_MINOR=1
MESA_TINY=0
VERSION=$(MESA_MAJOR).$(MESA_MINOR)
+2 -2
View File
@@ -1,7 +1,7 @@
# $Id: Makefile.X11,v 1.56 2001/10/17 20:44:26 brianp Exp $
# $Id: Makefile.X11,v 1.57 2001/10/22 22:45:18 brianp Exp $
# Mesa 3-D graphics library
# Version: 4.0
# Version: 4.1
#
# Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
#
+8 -1
View File
@@ -1,4 +1,4 @@
$Id: VERSIONS,v 1.73 2001/10/22 16:04:46 brianp Exp $
$Id: VERSIONS,v 1.74 2001/10/22 22:45:18 brianp Exp $
Mesa Version History
@@ -897,3 +897,10 @@ Mesa Version History
- fixed a dangling pointer problem in the XMesa code (Chris Burghart)
- lighting didn't always produce the correct alpha value
- fixed 3DNow! code to not read past end of arrays (Andrew Lewycky)
4.1 Month, ??, 2002
New:
-
Bug fixes:
-
+3 -3
View File
@@ -1,8 +1,8 @@
/* $Id: fakeglx.c,v 1.58 2001/09/23 16:11:27 brianp Exp $ */
/* $Id: fakeglx.c,v 1.59 2001/10/22 22:45:18 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 4.0
* Version: 4.1
*
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
*
@@ -66,7 +66,7 @@
#define SERVER_MINOR_VERSION 4
/* This is appended onto the glXGetClient/ServerString version strings. */
#define MESA_GLX_VERSION "Mesa 4.0"
#define MESA_GLX_VERSION "Mesa 4.1"
/* Who implemented this GLX? */
#define VENDOR "Brian Paul"
+4 -4
View File
@@ -1,8 +1,8 @@
/* $Id: get.c,v 1.69 2001/09/23 16:11:26 brianp Exp $ */
/* $Id: get.c,v 1.70 2001/10/22 22:45:18 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 4.0
* Version: 4.1
*
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
*
@@ -5310,8 +5310,8 @@ _mesa_GetString( GLenum name )
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.0";
static const char *version_1_3 = "1.3 Mesa 4.0";
static const char *version_1_2 = "1.2 Mesa 4.1";
static const char *version_1_3 = "1.3 Mesa 4.1";
ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);