From c7d0f0b46c16de1ae575446f2471cf297acacb29 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 28 Sep 2009 09:38:50 -0600 Subject: docs: document gallium mipmap generation fix --- docs/relnotes-7.5.2.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs') diff --git a/docs/relnotes-7.5.2.html b/docs/relnotes-7.5.2.html index b638c0517d..40b4ae85ef 100644 --- a/docs/relnotes-7.5.2.html +++ b/docs/relnotes-7.5.2.html @@ -49,6 +49,7 @@ tbd (such as bug 23946)
  • glUseProgram() is now compiled into display lists (bug 23746).
  • glUniform functions are now compiled into display lists +
  • Auto mipmap generation didn't work reliably with Gallium. -- cgit v1.2.3 From fc613848e6f8f1c5405a7612b00a02ac2a794b80 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 28 Sep 2009 09:43:42 -0600 Subject: docs: list additional 7.5.2 bug fixes --- docs/relnotes-7.5.2.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs') diff --git a/docs/relnotes-7.5.2.html b/docs/relnotes-7.5.2.html index 40b4ae85ef..0832e11bb4 100644 --- a/docs/relnotes-7.5.2.html +++ b/docs/relnotes-7.5.2.html @@ -50,6 +50,9 @@ tbd
  • glUseProgram() is now compiled into display lists (bug 23746).
  • glUniform functions are now compiled into display lists
  • Auto mipmap generation didn't work reliably with Gallium. +
  • Fixed random number usage in GLX code. +
  • Fixed invalid GL_OUT_OF_MEMORY error sometimes raised by glTexSubImage2D + when using Gallium. -- cgit v1.2.3 From f0dc37870577378b51c1f8f223932a24909c5db1 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Mon, 28 Sep 2009 11:22:54 -0700 Subject: Prep for 7.6 release --- Makefile | 2 +- docs/relnotes-7.6.html | 7 +------ src/mesa/main/version.h | 2 +- 3 files changed, 3 insertions(+), 8 deletions(-) (limited to 'docs') diff --git a/Makefile b/Makefile index b4f1934a5c..d360ddfd8b 100644 --- a/Makefile +++ b/Makefile @@ -182,7 +182,7 @@ ultrix-gcc: # Rules for making release tarballs -VERSION=7.6-devel +VERSION=7.6 DIRECTORY = Mesa-$(VERSION) LIB_NAME = MesaLib-$(VERSION) DEMO_NAME = MesaDemos-$(VERSION) diff --git a/docs/relnotes-7.6.html b/docs/relnotes-7.6.html index aaa36188d9..69b035217d 100644 --- a/docs/relnotes-7.6.html +++ b/docs/relnotes-7.6.html @@ -8,7 +8,7 @@ -

    Mesa 7.6 Release Notes / date TBD

    +

    Mesa 7.6 Release Notes, 28 September 2009

    Mesa 7.6 is a new development release. @@ -72,10 +72,5 @@ This was written by Zack Rusin at Tungsten Graphics. buffers (GLSL uniforms) - -

    Changes

    -
      -
    - diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index d4d3dd1a94..0ccdbf94a1 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -32,7 +32,7 @@ #define MESA_MAJOR 7 #define MESA_MINOR 6 #define MESA_PATCH 0 -#define MESA_VERSION_STRING "7.6-devel" +#define MESA_VERSION_STRING "7.6" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) -- cgit v1.2.3 From 86cd188f94c80767b81908e4ae9b6002f1396196 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Mon, 28 Sep 2009 11:29:25 -0700 Subject: docs: 7.6 md5 sums --- docs/relnotes-7.6.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/relnotes-7.6.html b/docs/relnotes-7.6.html index 69b035217d..410b6efdd4 100644 --- a/docs/relnotes-7.6.html +++ b/docs/relnotes-7.6.html @@ -28,7 +28,15 @@ for DRI hardware acceleration.

    MD5 checksums

    -tbd
    +5ffa7d7abf8973f57a1bc4f813e6dade  MesaLib-7.6.tar.gz
    +8c75f90cd0303cfac9e4b6d54f6759ca  MesaLib-7.6.tar.bz2
    +27fcfd69708599c978cb34ba5cd363e1  MesaLib-7.6.zip
    +e7befb3ae604f591806194a4da445628  MesaDemos-7.6.tar.gz
    +0ede7adf217951acd90dbe4551210c07  MesaDemos-7.6.tar.bz2
    +ed9298409cf6613bc0964525ca4afc8a  MesaDemos-7.6.zip
    +666955668e44ff14acf7d15dc78407d3  MesaGLUT-7.6.tar.gz
    +b8b59706f827d18d1b784a0ff98b4dc2  MesaGLUT-7.6.tar.bz2
    +c49c19c2bbef4f3b7f1389974dff25f4  MesaGLUT-7.6.zip
     
    -- cgit v1.2.3 From b807d49f1878ba5b1cb63823f07d8ab3076539c3 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Mon, 28 Sep 2009 11:33:52 -0700 Subject: Prep for 7.5.2 release --- docs/relnotes-7.5.2.html | 3 +-- src/mesa/main/version.h | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'docs') diff --git a/docs/relnotes-7.5.2.html b/docs/relnotes-7.5.2.html index 0832e11bb4..52bae23ac7 100644 --- a/docs/relnotes-7.5.2.html +++ b/docs/relnotes-7.5.2.html @@ -8,7 +8,7 @@ -

    Mesa 7.5.2 Release Notes, (date tbd)

    +

    Mesa 7.5.2 Release Notes, 28 September 2009

    Mesa 7.5.2 is a bug-fix release fixing issues found since the 7.5.1 release. @@ -55,6 +55,5 @@ tbd when using Gallium. - diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index 995e46d318..7fcc6f01bc 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -31,7 +31,7 @@ #define MESA_MAJOR 7 #define MESA_MINOR 5 #define MESA_PATCH 2 -#define MESA_VERSION_STRING "7.5.2-devel" +#define MESA_VERSION_STRING "7.5.2" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) -- cgit v1.2.3 From 18f3afbe889357c5d3a0e257c4caba21f23945bb Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Mon, 28 Sep 2009 11:41:23 -0700 Subject: docs: 7.5.2 md5 sums --- docs/relnotes-7.5.2.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/relnotes-7.5.2.html b/docs/relnotes-7.5.2.html index 52bae23ac7..5c395d97b4 100644 --- a/docs/relnotes-7.5.2.html +++ b/docs/relnotes-7.5.2.html @@ -31,7 +31,15 @@ for DRI hardware acceleration.

    MD5 checksums

    -tbd
    +43a90191dd9f76cd65dcc1ac91f3be70  MesaLib-7.5.2.tar.gz
    +94e47a499f1226803869c2e37a6a8e3a  MesaLib-7.5.2.tar.bz2
    +1ecb822b567ad67a0617361d45206b67  MesaLib-7.5.2.zip
    +2718fdce7e075911d6147beb8f27104b  MesaDemos-7.5.2.tar.gz
    +4e0f5ccd58afe21eddcd94327d926e86  MesaDemos-7.5.2.tar.bz2
    +f621f8c223b278d7c8e49a012d56ca25  MesaDemos-7.5.2.zip
    +83c16c1d6bcfcc3f97aab5d2fe430b4c  MesaGLUT-7.5.2.tar.gz
    +e5d03bedae369ea3705783573bb33813  MesaGLUT-7.5.2.tar.bz2
    +e82ba28e00d653e6f437d32be8ca8481  MesaGLUT-7.5.2.zip
     
    -- cgit v1.2.3 From 6829ef74607fa6af602fa1539b1f084a8c0d356c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 28 Sep 2009 13:19:57 -0600 Subject: docs: update news.html file with 7.5.2 and 7.6 release --- docs/news.html | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'docs') diff --git a/docs/news.html b/docs/news.html index 07ad42ed49..93da56a5c3 100644 --- a/docs/news.html +++ b/docs/news.html @@ -10,6 +10,17 @@

    News

    +

    September 28, 2009

    +

    +Mesa 7.6 is released. This is a new feature +release. Those especially concerned about stability may want to wait for the +follow-on 7.6.1 bug-fix release. +

    +

    +Mesa 7.5.2 is also released. +This is a stable release fixing bugs since the 7.5.1 release. +

    +

    September 3, 2009

    -- cgit v1.2.3 From 2d400d43bfbe5ea6f8c85acbd12c9376a3ab1114 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 29 Sep 2009 09:34:47 -0600 Subject: docs: initial 7.6.1 release notes --- docs/relnotes-7.6.1.html | 44 ++++++++++++++++++++++++++++++++++++++++++++ docs/relnotes.html | 1 + 2 files changed, 45 insertions(+) create mode 100644 docs/relnotes-7.6.1.html (limited to 'docs') diff --git a/docs/relnotes-7.6.1.html b/docs/relnotes-7.6.1.html new file mode 100644 index 0000000000..584a2de926 --- /dev/null +++ b/docs/relnotes-7.6.1.html @@ -0,0 +1,44 @@ + + +Mesa Release Notes + + + + + + + +

    Mesa 7.6.1 Release Notes, (date tbd)

    + +

    +Mesa 7.6.1 is a bug-fix release fixing issues since version 7.6. +

    +

    +Mesa 7.6.1 implements the OpenGL 2.1 API, but the version reported by +glGetString(GL_VERSION) depends on the particular driver being used. +Some drivers don't support all the features required in OpenGL 2.1. +

    +

    +See the Compiling/Installing page for prerequisites +for DRI hardware acceleration. +

    + + +

    MD5 checksums

    +
    +tbd
    +
    + + +

    New features

    +
      +
    + + +

    Bug fixes

    +
      +
    • Fixed crash caused by glXCopyContext() and glXDestroyContext(), bug 24217 +
    + + + diff --git a/docs/relnotes.html b/docs/relnotes.html index 560a660af4..d8cbc791eb 100644 --- a/docs/relnotes.html +++ b/docs/relnotes.html @@ -13,6 +13,7 @@ The release notes summarize what's new or changed in each Mesa release.

      +
    • 7.6.1 release notes
    • 7.6 release notes
    • 7.5.2 release notes
    • 7.5.1 release notes -- cgit v1.2.3 From 5f1faf4a21c2af693208c9b46ff93eda899d839d Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 29 Sep 2009 12:18:41 -0600 Subject: docs: fixed glXQueryContext(GLX_RENDER_TYPE) --- docs/relnotes-7.6.1.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs') diff --git a/docs/relnotes-7.6.1.html b/docs/relnotes-7.6.1.html index 584a2de926..e024fb5b8e 100644 --- a/docs/relnotes-7.6.1.html +++ b/docs/relnotes-7.6.1.html @@ -38,6 +38,7 @@ tbd

      Bug fixes

      • Fixed crash caused by glXCopyContext() and glXDestroyContext(), bug 24217 +
      • glXQueryContext(GLX_RENDER_TYPE) returned wrong values (bug 24211)
      -- cgit v1.2.3 From b77469871a57240b33b61f12cde0da078470237b Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 29 Sep 2009 19:05:04 -0600 Subject: docs: document GLSL sqrt(0) fix --- docs/relnotes-7.6.1.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs') diff --git a/docs/relnotes-7.6.1.html b/docs/relnotes-7.6.1.html index e024fb5b8e..3271f47989 100644 --- a/docs/relnotes-7.6.1.html +++ b/docs/relnotes-7.6.1.html @@ -39,6 +39,7 @@ tbd
      • Fixed crash caused by glXCopyContext() and glXDestroyContext(), bug 24217
      • glXQueryContext(GLX_RENDER_TYPE) returned wrong values (bug 24211) +
      • GLSL sqrt(0) returned unpredictable results
      -- cgit v1.2.3 From d622c4ddba074ce6057cafa63f63ea595bbc212e Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 1 Oct 2009 13:11:38 -0600 Subject: docs: added objviewer to release notes --- docs/relnotes-7.7.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs') diff --git a/docs/relnotes-7.7.html b/docs/relnotes-7.7.html index ca6ec55b60..856b8fae3d 100644 --- a/docs/relnotes-7.7.html +++ b/docs/relnotes-7.7.html @@ -38,6 +38,7 @@ tbd
    • GL_ARB_depth_clamp (supported in Intel i965 DRI and software drivers)
    • GL_NV_depth_clamp (supported in Intel i965 DRI and software drivers)
    • GL_ARB_provoking_vertex (same as GL_EXT_provoking_vertex)
    • +
    • Wavefront .obj file loader/viewer demo (progs/demos/objviewer)
    -- cgit v1.2.3