From 79a3e298c5396df416f655e44a7cad2de6b40aef Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Thu, 10 Sep 2009 12:50:08 -0600
Subject: docs: initial 7.5.2 release notes page
---
docs/relnotes-7.5.2.html | 51 ++++++++++++++++++++++++++++++++++++++++++++++++
docs/relnotes.html | 1 +
2 files changed, 52 insertions(+)
create mode 100644 docs/relnotes-7.5.2.html
diff --git a/docs/relnotes-7.5.2.html b/docs/relnotes-7.5.2.html
new file mode 100644
index 0000000000..a96b3f0d38
--- /dev/null
+++ b/docs/relnotes-7.5.2.html
@@ -0,0 +1,51 @@
+
+
+Mesa Release Notes
+
+
+
+
+
+
+
+Mesa 7.5.2 Release Notes, (date tbd)
+
+
+Mesa 7.5.2 is a bug-fix release fixing issues found since the 7.5.1 release.
+
+
+The main new feature of Mesa 7.5.x is the
+Gallium3D infrastructure.
+
+
+Mesa 7.5.2 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
+
+Detect B43 chipset in Intel driver
+
+
+
+Bug fixes
+
+Assorted bug fixes for i965/i945 drivers
+
+
+
+
+
diff --git a/docs/relnotes.html b/docs/relnotes.html
index 7b91a3dc5e..9026a28286 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.5.2 release notes
7.5.1 release notes
7.5 release notes
7.4.4 release notes
--
cgit v1.2.3
From 988db641195819c948249a1bb2d59f13577a482f Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Thu, 10 Sep 2009 14:11:36 -0600
Subject: softpipe: set dirty_render_cache in softpipe_clear()
This fixes a bug seen when doing a glDrawPixels(GL_STENCIL_INDEX) right
after a glClear(). The check-for-flush test was failing because we
didn't set the dirty_render_cache flag in softpipe_clear(). So we saw
stale data when we mapped the stencil buffer.
---
src/gallium/drivers/softpipe/sp_clear.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/gallium/drivers/softpipe/sp_clear.c b/src/gallium/drivers/softpipe/sp_clear.c
index fa59277438..bc8f919695 100644
--- a/src/gallium/drivers/softpipe/sp_clear.c
+++ b/src/gallium/drivers/softpipe/sp_clear.c
@@ -86,4 +86,6 @@ softpipe_clear(struct pipe_context *pipe, unsigned buffers, const float *rgba,
pipe->surface_fill(pipe, ps, 0, 0, ps->width, ps->height, cv);
#endif
}
+
+ softpipe->dirty_render_cache = TRUE;
}
--
cgit v1.2.3
From 3f4d776199562f94edb99045e0dad3e26dfddac0 Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Thu, 10 Sep 2009 14:14:18 -0600
Subject: softpipe: minor indentation fix
---
src/gallium/drivers/softpipe/sp_clear.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/gallium/drivers/softpipe/sp_clear.c b/src/gallium/drivers/softpipe/sp_clear.c
index bc8f919695..d3af18e162 100644
--- a/src/gallium/drivers/softpipe/sp_clear.c
+++ b/src/gallium/drivers/softpipe/sp_clear.c
@@ -85,7 +85,7 @@ softpipe_clear(struct pipe_context *pipe, unsigned buffers, const float *rgba,
/* non-cached surface */
pipe->surface_fill(pipe, ps, 0, 0, ps->width, ps->height, cv);
#endif
- }
+ }
softpipe->dirty_render_cache = TRUE;
}
--
cgit v1.2.3
From 4d9bbabb8360a3de5b8659946c7c903356fd176c Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Thu, 10 Sep 2009 14:15:07 -0600
Subject: docs: document Gallium glDrawPixels(GL_STENCIL_INDEX) fix
---
docs/relnotes-7.5.2.html | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/relnotes-7.5.2.html b/docs/relnotes-7.5.2.html
index a96b3f0d38..32100142c0 100644
--- a/docs/relnotes-7.5.2.html
+++ b/docs/relnotes-7.5.2.html
@@ -44,6 +44,7 @@ tbd
Bug fixes
Assorted bug fixes for i965/i945 drivers
+ Fixed Gallium glDrawPixels(GL_STENCIL_INDEX) failure.
--
cgit v1.2.3