+Mesa 7.5.1 is a bug-fix release fixing issues found since the 7.5 release.
+
+
+The main new feature of Mesa 7.5.x is the
+Gallium3D infrastructure.
+
+
+Mesa 7.5.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.
+
Added missing GLEW library to MesaDemos tarballs.
+
+
+
+
Changes
+
+
+
+
+
diff --git a/docs/relnotes.html b/docs/relnotes.html
index 4764eb689d..7b91a3dc5e 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.
--
cgit v1.2.3
From 27e55588e0f6c8fb570d3ae601319ed001b7e02a Mon Sep 17 00:00:00 2001
From: "RALOVICH, Kristóf"
Date: Thu, 23 Jul 2009 17:57:48 +0200
Subject: docs: do not mentions xthreads any more
---
docs/dispatch.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'docs')
diff --git a/docs/dispatch.html b/docs/dispatch.html
index b9ea8822e6..bcab74c707 100644
--- a/docs/dispatch.html
+++ b/docs/dispatch.html
@@ -198,7 +198,7 @@ few preprocessor defines.
If GLX_USE_TLS is defined, method #4 is used.
If PTHREADS is defined, method #3 is used.
-
If any of PTHREADS, USE_XTHREADS,
+
If any of PTHREADS,
SOLARIS_THREADS, WIN32_THREADS, or BEOS_THREADS
is defined, method #2 is used.
If none of the preceeding are defined, method #1 is used.
--
cgit v1.2.3
From aefaeba54a3ad7104a83ffdaf81ad9d654b990ee Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Thu, 30 Jul 2009 08:22:26 -0600
Subject: docs: document new i915/945 extensions
---
docs/relnotes-7.6.html | 2 ++
1 file changed, 2 insertions(+)
(limited to 'docs')
diff --git a/docs/relnotes-7.6.html b/docs/relnotes-7.6.html
index 1e7ccf88bf..560d50d0d6 100644
--- a/docs/relnotes-7.6.html
+++ b/docs/relnotes-7.6.html
@@ -46,6 +46,8 @@ This was written by Zack Rusin at Tungsten Graphics.
radeon/r200/r300 GL_EXT_framebuffer_object support when used with
kernel memory manager
r300 driver support for GL_EXT_vertex_array_bgra, GL_EXT_texture_sRGB
+
i915/945 driver support for GL_ARB_point_sprite, GL_EXT_stencil_two_side
+ and GL_ATI_separate_stencil extensions
--
cgit v1.2.3
From 3a221a9018f5166f249671ba41e8d44fe6b3301f Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Tue, 4 Aug 2009 09:27:49 -0600
Subject: docs: 7.5.1 bug fixes
---
docs/relnotes-7.5.1.html | 4 ++++
1 file changed, 4 insertions(+)
(limited to 'docs')
diff --git a/docs/relnotes-7.5.1.html b/docs/relnotes-7.5.1.html
index 0f475ad2b4..7442decd64 100644
--- a/docs/relnotes-7.5.1.html
+++ b/docs/relnotes-7.5.1.html
@@ -43,6 +43,10 @@ tbd
Bug fixes
Added missing GLEW library to MesaDemos tarballs.
+
Fixed swapbuffers jerkiness in Doom3/etc in Intel drivers.
+
Fixed front buffer rendering bug in Intel drivers.
+
Fixed minor GLX memory leaks.
+
Fixed some texture env / fragment program state bugs.
--
cgit v1.2.3
From 5b3428d7453eec8e8a5344e22113774dea1dc456 Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Wed, 5 Aug 2009 13:50:21 -0600
Subject: docs:fix glBlitFramebuffer() for Gallium
---
docs/relnotes-7.5.1.html | 1 +
1 file changed, 1 insertion(+)
(limited to 'docs')
diff --git a/docs/relnotes-7.5.1.html b/docs/relnotes-7.5.1.html
index 7442decd64..2a7661f601 100644
--- a/docs/relnotes-7.5.1.html
+++ b/docs/relnotes-7.5.1.html
@@ -47,6 +47,7 @@ tbd
Fixed front buffer rendering bug in Intel drivers.
Fixed minor GLX memory leaks.
Fixed some texture env / fragment program state bugs.
+
Fixed some Gallium glBlitFramebuffer() bugs
--
cgit v1.2.3
From 9a8781bd24730374e14568f67f7db8a9cc444bb4 Mon Sep 17 00:00:00 2001
From: Tom Fogal
Date: Thu, 13 Aug 2009 19:51:57 -0600
Subject: Add a FAQ about internal buffer sizes.
---
docs/faq.html | 13 +++++++++++++
1 file changed, 13 insertions(+)
(limited to 'docs')
diff --git a/docs/faq.html b/docs/faq.html
index 11b5d43255..65e279aac5 100644
--- a/docs/faq.html
+++ b/docs/faq.html
@@ -316,6 +316,19 @@ Basically, applying a translation of (0.375, 0.375, 0.0) to your coordinates
will fix the problem.
+
3.6 How can I change the maximum framebuffer size in Mesa's
+swrast backend?
+
+These can be overridden by using the --with-max-width and
+--with-max-height options. The two need not be equal.
+
+Do note that Mesa uses these values to size some internal buffers,
+so increasing these sizes will cause Mesa to require additional
+memory. Furthermore, increasing these limits beyond 4096
+may introduce rasterization artifacts; see the leading comments in
+src/mesa/swrast/s_tritemp.h.
+
+
--
cgit v1.2.3
From c3f9c2eb75f6f07f8b2b98a96b0ddac24a6fa612 Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Fri, 14 Aug 2009 09:00:15 -0600
Subject: docs: document new --with-max-width/height config options
---
docs/relnotes-7.6.html | 2 ++
1 file changed, 2 insertions(+)
(limited to 'docs')
diff --git a/docs/relnotes-7.6.html b/docs/relnotes-7.6.html
index 560d50d0d6..691c0f04ca 100644
--- a/docs/relnotes-7.6.html
+++ b/docs/relnotes-7.6.html
@@ -48,6 +48,8 @@ This was written by Zack Rusin at Tungsten Graphics.
r300 driver support for GL_EXT_vertex_array_bgra, GL_EXT_texture_sRGB
i915/945 driver support for GL_ARB_point_sprite, GL_EXT_stencil_two_side
and GL_ATI_separate_stencil extensions
+
Added configure --with-max-width=W, --with-max-height=H options to specify
+ max framebuffer, viewport size.
--
cgit v1.2.3
From a7ca80ff6af8d3b28b981b518ca39baba20a2d89 Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Fri, 14 Aug 2009 11:23:18 -0600
Subject: Add a FAQ about internal buffer sizes.
(cherry picked from master, commit 9a8781bd24730374e14568f67f7db8a9cc444bb4)
---
docs/faq.html | 13 +++++++++++++
1 file changed, 13 insertions(+)
(limited to 'docs')
diff --git a/docs/faq.html b/docs/faq.html
index 11b5d43255..65e279aac5 100644
--- a/docs/faq.html
+++ b/docs/faq.html
@@ -316,6 +316,19 @@ Basically, applying a translation of (0.375, 0.375, 0.0) to your coordinates
will fix the problem.
+
3.6 How can I change the maximum framebuffer size in Mesa's
+swrast backend?
+
+These can be overridden by using the --with-max-width and
+--with-max-height options. The two need not be equal.
+
+Do note that Mesa uses these values to size some internal buffers,
+so increasing these sizes will cause Mesa to require additional
+memory. Furthermore, increasing these limits beyond 4096
+may introduce rasterization artifacts; see the leading comments in
+src/mesa/swrast/s_tritemp.h.
+
+
--
cgit v1.2.3
From 1574b05189fee1b5802024b505ba93fff345e95c Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Fri, 14 Aug 2009 11:24:20 -0600
Subject: docs: docs: document new --with-max-width/height config options
---
docs/relnotes-7.5.1.html | 2 ++
1 file changed, 2 insertions(+)
(limited to 'docs')
diff --git a/docs/relnotes-7.5.1.html b/docs/relnotes-7.5.1.html
index 2a7661f601..1da086de3b 100644
--- a/docs/relnotes-7.5.1.html
+++ b/docs/relnotes-7.5.1.html
@@ -37,6 +37,8 @@ tbd
New features
+
Added configure --with-max-width=W, --with-max-height=H options to specify
+ max framebuffer, viewport size.