From b4ba6a66b70b89e9c049f6ce9b65c1edda118651 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 22 Jul 2009 12:49:34 -0600 Subject: docs: initial release notes for 7.5.1 --- docs/relnotes-7.5.1.html | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ docs/relnotes.html | 1 + 2 files changed, 55 insertions(+) create mode 100644 docs/relnotes-7.5.1.html (limited to 'docs') diff --git a/docs/relnotes-7.5.1.html b/docs/relnotes-7.5.1.html new file mode 100644 index 0000000000..0f475ad2b4 --- /dev/null +++ b/docs/relnotes-7.5.1.html @@ -0,0 +1,54 @@ + + +Mesa Release Notes + + + + + + + +

Mesa 7.5.1 Release Notes / (date TBD)

+ +

+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. +

+

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

+ + +

MD5 checksums

+
+tbd
+
+ + +

New features

+ + + +

Bug fixes

+ + + +

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 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.
    -- cgit v1.2.3