diff options
author | Timo Aaltonen <[email protected]> | 2010-03-18 13:51:45 +0200 |
---|---|---|
committer | Timo Aaltonen <[email protected]> | 2010-03-18 13:51:45 +0200 |
commit | 65a728348ac29c0632129485480350f23878eafc (patch) | |
tree | 5ef70d3bcb58932d3b937f5cc735783c59d2071b | |
parent | 99d174f882e393a6a5e88e8955199255b12cd213 (diff) |
Update the changelogs.
-rw-r--r-- | ChangeLog | 321 | ||||
-rw-r--r-- | debian/changelog | 7 |
2 files changed, 327 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 477ae66f7fc..ac9f0300351 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,324 @@ +commit 00e41e007e82195fe935d827402a3af6200672b8 +Author: Thomas Hellstrom <[email protected]> +Date: Sat Mar 13 20:25:29 2010 +0100 + + st/xorg: Fix Xv cliprect scaling. + + Due to a quantization error, different cliprects of scaled video windows may + not have identical x / y scale. + + Signed-off-by: Thomas Hellstrom <[email protected]> + +commit 6624845a5df09285479382894c6952bd9e9842d0 +Author: Ian Romanick <[email protected]> +Date: Tue Mar 16 07:55:02 2010 -0700 + + mesa: set version string to 7.7.1-rc1 + +commit c9c54180e431f690af4071a804a94c09cf824092 +Author: Matthew W. S. Bell <[email protected]> +Date: Mon Mar 15 01:18:02 2010 +0000 + + Correct GL_EQUIV code in r67/7xx. + + From 247e121106e8d3e389f2e5a6edf13ea70ac18df7 Mon Sep 17 00:00:00 2001 + + These seem to be documented in + <http://www.svgopen.org/2003/papers/RasterOperationsUsingFilterElements/index.html>. + +commit 93e77b0028170fafd176c3a80a99287343c946b4 +Author: José Fonseca <[email protected]> +Date: Fri Mar 12 17:59:10 2010 +0000 + + mesa: List Quake3 extensions first. + + Quake3 truncates the extension string, and GL_EXT_compiled_vertex_array + wasn't being detected, making it very slow. + + This is a quick fix. The IMHO best way to address this in a more general + fashion is to sort by year. + +commit 0c9e8e6c6e704fac299e2c6224f6030541aef458 +Author: Keith Whitwell <[email protected]> +Date: Fri Mar 12 18:32:10 2010 +0000 + + mesa: Fix memory leak in decompress-with-blit. + (cherry picked from commit f05a4ee6f2840590c90da4be2fe5c6295410a5af) + +commit c50477c255a34444720fb944c54373462ef39fb9 +Author: Michel Dänzer <[email protected]> +Date: Fri Mar 12 18:24:34 2010 +0100 + + st/dri: Always try to set up R5G6B5 configs. + + Allows compiz to work in depth 16. + + The DRI2 getBuffersWithFormat hook is only required for 16/32 bit depth + buffers, for colour buffers the only requirement is that the format matches + the drawable depth, which we can't check here. + +commit 3bf13656d37788e88d342cece75fd0753292c010 +Author: Jakob Bornecrantz <[email protected]> +Date: Sat Feb 6 16:58:32 2010 +0000 + + st/xorg: Include cursorstr.h + +commit fa4083d38b16e4db1420e1ff18ba018036478efa +Author: Brian Paul <[email protected]> +Date: Wed Mar 10 14:14:04 2010 -0700 + + docs: updates to 7.7.1 release notes + +commit d311ded31d0248b225f87c22a8eb9f12e580f964 +Author: Brian Paul <[email protected]> +Date: Wed Mar 10 10:39:17 2010 -0700 + + gallium/util: added surface dump code for unix + +commit 34f02071618624263eba839b5aeb930d0e794078 +Author: Brian Paul <[email protected]> +Date: Wed Mar 10 10:34:13 2010 -0700 + + st/mesa: fix incorrect glCopyPixels between window/FBO + + There was a DrawBuffer/ReadBuffer typo and we were neglecting to invert + the texture coords when copying from a window to an FBO. + + Plus, add some surface dump/debug code (disabled). + +commit 8d3f629a13afb0d6acafc7a007972fdc5efe6847 +Author: Brian Paul <[email protected]> +Date: Wed Mar 10 10:31:01 2010 -0700 + + st/mesa: fix incorrect glDrawPixels into FBO + + We weren't inverting the textured quad when drawing into an fbo. + +commit b98ef495d44850cd992e59beae4141ce3dcb70a3 +Author: Thomas Hellstrom <[email protected]> +Date: Sat Mar 6 15:48:48 2010 +0100 + + st/xorg Avoid advertizing rotation / reflection support. + + We don't support it yet since we don't implement the shadow allocate + functions. + + Signed-off-by: Thomas Hellstrom <[email protected]> + +commit 21c91b410a2a2cbf8eb677e59e3322f86320f2b0 +Author: Michel Dänzer <[email protected]> +Date: Wed Mar 10 13:16:00 2010 +0100 + + st/xorg: Work around cursor reference counting bugs in older X servers. + + Could result in use of freed memory and consequently random crashes, e.g. on + screen resize. + +commit a8f3b3f88acc1f0193fa740e76e9d815f07f32ab +Author: Thomas Hellstrom <[email protected]> +Date: Sun Feb 28 20:14:44 2010 +0100 + + st/xorg, vmware: Make throttling configurable. + + The xorg state tracker gets two new options to let the user choose + whether to enable / disable dirty throttling and swapbuffer throttling. + The default value of these options are enabled, unless the winsys + supplies a customizer with other values. The customizer record has been + extended to allow this, and also to set winsys-based throttling on a per- + context basis. + + The vmware part of this patch disables the dirty throttling if the kernel + supports command submission throttling, and also in that case sets kernel + based throttling for everything but swapbuffers. The vmware winsys does not + set throttling per context, even if it theoretically could, but instead + sets throttling per screen. This should perhaps be changed, should the + xorg state tracker start to use multiple rendering contexts. Kernel throttling + is off by default for all new screens/contexts, so the dri state tracker + is not affected. + + This significantly improves interactivity of the vmware xorg driver. + + Signed-off-by: Thomas Hellstrom <[email protected]> + +commit e8a8c5e339dfd7a36bb6435fd34175482b9187b8 +Author: Thomas Hellstrom <[email protected]> +Date: Sat Feb 27 15:13:49 2010 +0100 + + svga: Add a winsys callback to get the svga_winsys_context + + The winsys may need to extract the svga_winsys_context from a + pipe_context. Add a function to enable that functionality. + + Signed-off-by: Thomas Hellstrom <[email protected]> + +commit 7941d31ee6ef151c08e2e9cf288dde564fd9b576 +Author: Keith Whitwell <[email protected]> +Date: Tue Mar 9 19:14:34 2010 +0100 + + svga: Don't do culling while the software pipeline is active. + + It does it for us, and additionally introduces potentially + back-facing triangles. + +commit 842351dd7640fe6b71819e8c39fbbe99a55b3bfc +Author: Brian Paul <[email protected]> +Date: Mon Mar 8 11:40:40 2010 -0700 + + softpipe: zero-out entire clear_flags array in sp_tile_cache_flush_clear() + + Before, we only cleared the flags for the active tiles (the ones inside + the framebuffer bound). The problem is if we later bound a different, + larger surface to the tile cache we'd have some stale clear-flags still + set (and mistakenly clear some tiles in the new surface). + + Fixes fd.o bug 26932. + + (cherry picked from commit e1762fb870f86afc4f6bd000b4a1c059d161f10d) + +commit d74929702f67483debf04adbafc6a8672a9e2cbf +Author: Brian Paul <[email protected]> +Date: Mon Mar 8 11:40:25 2010 -0700 + + st/mesa: don't detach renderbuffer, surface in st_finish_render_texture() + + There's no reason to release the renderbuffer from the framebuffer object + or release the gallium surface in this function (they're reference counted). + In fact, we don't want to do this because we may later use the texture as a + pixel source (ex: glBlitFramebuffer) and need the surface. + + Fixes fd.o bug 26923 and is part of the fix for bug 26932. + + (cherry picked from commit 80dc54e308dfb1fad344272978ff14646995e00a) + +commit 1e431f04544fb7dfc19e20d3903962a88e4e88ba +Author: Brian Paul <[email protected]> +Date: Mon Mar 8 10:00:17 2010 -0700 + + mesa: s/GL_DEPTH_STENCIL/GL_DEPTH_COMPONENT/ for MESA_FORMAT_Z16 renderbuffer + + MESA_FORMAT_Z16 has no stencil bits. + + (cherry picked from commit 614f490ca918f891cd70674ea7841d5b2a97e9ef) + +commit 4cc8d1d79fb18d2b18e9fe2d4cbcf05ab89c66dc +Author: Alex Deucher <[email protected]> +Date: Mon Mar 8 10:00:59 2010 -0500 + + r600: recalculate point size, if point min/max size changes + +commit 3d2bc6848a29af1163dc5b5c52671e9548b62cda +Author: Alex Deucher <[email protected]> +Date: Mon Mar 8 09:57:26 2010 -0500 + + r600: no need to flush on context init + +commit d5327538e7c29c3fae2be7fa6c8f3bc854330733 +Author: Maciej Cencora <[email protected]> +Date: Sat Mar 6 13:39:13 2010 +0100 + + r300: recalculate point size, if point min/max size changes + + Fixes two wine d3d9 unit tests + +commit 86ac140937908d92301d634893a60406bcceae28 +Author: Maciej Cencora <[email protected]> +Date: Sat Mar 6 13:18:11 2010 +0100 + + r300: no need to flush on context init + +commit b584e780ab168b86800a2bd1b2aa1d09594c16f9 +Author: Maciej Cencora <[email protected]> +Date: Sat Mar 6 13:09:47 2010 +0100 + + r300: remove unnecessary code + + _tnl_UpdateFixedFunctionProgram is already called in r300_draw.c + +commit 981e8a208780b2b08b5da88978a3b3c564fca111 +Author: Alex Deucher <[email protected]> +Date: Wed Mar 3 14:09:53 2010 -0500 + + r600: add new rs880 pci id + +commit 72d380b36399f034b936740c92f989f63cff14a4 +Author: Brian Paul <[email protected]> +Date: Tue Mar 2 07:37:26 2010 -0700 + + glx: replace assertion with conditional + + See fd.o bug 26832. + +commit cf8af9bcf127e170b64112bd548d5d4e79c8e894 +Author: Dave Airlie <[email protected]> +Date: Tue Mar 2 14:05:21 2010 +1000 + + r600: fix blender picking. + + This fixes the sw fallback for GL_SELECT picking modes. + + Fixes object picking blender + depthpick test + + http://bugs.freedesktop.org/show_bug.cgi?id=26419 + + Signed-off-by: Dave Airlie <[email protected]> + +commit 7123f3d77ad7a62d9604d3febc42881e881452ea +Author: Alex Deucher <[email protected]> +Date: Fri Feb 26 15:24:12 2010 -0500 + + r600: enable OQ on rv740 on drms with working pipe config + +commit 2edb1b95346575eb260cfc329a973ab0e0a18796 +Author: Klaus Schnass <[email protected]> +Date: Fri Feb 26 15:39:17 2010 -0500 + + r600: fail to validate unsupported texture formats + +commit 69334d6784e22b82a0449eab1645ae901c2c6842 +Author: Markus Fleschutz <[email protected]> +Date: Fri Feb 26 10:38:21 2010 -0700 + + glx: fix incorrect array stack memory allocation + + The array stack space wasn't allocated to the proper size. Fixes out of + bounds memory writes when the client/array stack depth exceeds one. + + See fd.o bug 26768. + +commit 61482ddc1c9443f26a4106efa113ae59edb9db10 +Author: Brian Paul <[email protected]> +Date: Fri Feb 26 09:14:12 2010 -0700 + + mesa: fix _BaseFormat assignment in _mesa_soft_renderbuffer_storage() + + The rb->InternalFormat field will be set by the caller if the allocation + succeeds. Until then, this field's value can't be used. Fixes a failed + assertion with FlightGear. + + (cherry picked from commit fe25476c04b341d50777b8edd0533f7c838f6361) + +commit b0e84e22d5926cb98c1288e79f527cd89c0242ce +Author: Brian Paul <[email protected]> +Date: Fri Feb 26 09:10:27 2010 -0700 + + mesa: use simplified _BaseFormat value in render-to-texture code + + Fixes fd.o bug 26762. + + (cherry picked from commit c9e8ff1976cd14fdc84db440a554185be29a0ca2) + +commit c0e8d443fe29bc81318144ab33a4e3a5afa88ed4 +Author: Jakob Bornecrantz <[email protected]> +Date: Thu Feb 25 16:51:30 2010 +0100 + + st/xorg: Re-enable crtc on resize + +commit b95d4cd680990c6f2ac060cac054fbd942ad58e7 +Author: Jakob Bornecrantz <[email protected]> +Date: Thu Feb 25 16:51:15 2010 +0100 + + st/xorg: Fix copy-topy + commit 293f4d51b473783d5c5ab773a1c438e0a2fe46f2 Author: Brian Paul <[email protected]> Date: Wed Feb 24 14:04:26 2010 -0700 diff --git a/debian/changelog b/debian/changelog index 3847cfb336c..bb75c3e7b96 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,12 @@ -mesa (7.7-5) UNRELEASED; urgency=low +mesa (7.7.1~rc1-1) UNRELEASED; urgency=low + [ Brice Goglin ] * Remove Thierry Reding from Uploaders, closes: #572539. + [ Timo Aaltonen ] + * New upstream release candidate. + * Pull from upstream mesa_7_7_branch up to commit 00e41e00. + -- Brice Goglin <[email protected]> Thu, 04 Mar 2010 20:51:29 +0100 mesa (7.7-4) unstable; urgency=low |