Tag 'mesa-10.0.1' created by Carl Worth <cwo...@cworth.org> at 2013-12-13 06:15 +0000
Mesa 10.0.1 release -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (GNU/Linux) iQIcBAABCAAGBQJSqqYdAAoJEGACM7qeVNxhMNEP/1QLQuE6zCkZPDjWYhSKKS2y 8SM0Gxfbk9Ppd+w3S0mWYJyk3Y2HCZuGPaVmiNv4uVJH0LAn5pf/hiV0IswfE9wY XNVmE+g37E+Zxmkgh5Or+KVxET3Q+AbAyUczW2jR/FqMD+xfzIU/ZqREniIOLFxt 9plCFLsT6Url2d9KAfJcKl764luFeCjEMg8SMzPMtkjEPpNhBzO2WCnqDDabIHzO LIO/FzBM8lROyuhkR4FGHV1ICFTGfZptDI2fHbrQJEB4ZR7bFBaUhmvlK5wXxEdc lcCrLfTdbq3/dKPzypRvNy5HbkVsFBg5EpMNMFm7iHCBth3ljjUxfK7kLyTNxHyn Wf+HGp1JzpuspmijksAivKOAOvAocIhkYl0kKroK41APOB43n61cO0RT21bGvVOC Q3TaY14Nm3EhajVceCgyrjEhYu+ailpIlJYbj3qB2oltkRofR4aUHZCgpigYIChH m3ta9V6PHtZC+gPwoGkkPTzTtfkPyVSVyBXx8k+Hv2Lt8LF+NEwKWb5mtcOI3YRM erNsgmNr//y4HIaPg2lsPi7Aynmj9itxotd3K7iddubtLlGbaZ5nUWhEE1lJUhFz hf8G/3fMIezbIVzAsDhIEMq4sqBFUidiK4TFY2VsrBqW+AfqVtv49VHUQEh9drOZ iT4kyMa6V+2frBs85YwW =xWfx -----END PGP SIGNATURE----- Changes since mesa-10.0: Axel Davy (2): egl/wayland: Flush the wl_display at the end of SwapBuffers Enable throttling in SwapBuffers Carl Worth (3): docs: Add release notes for 10.0.1 Makefile: Add bin/test-driver to EXTRA_FILES Update version for the 10.0.1 release. Chad Versace (2): i965/hsw: Apply non-msrt fast color clear w/a to all HSW GTs i965: Add extra-alignment for non-msrt fast color clear for all hw (v2) Dave Airlie (1): swrast: fix readback regression since inversion fix Emil Velikov (1): automake: include only one copy VERSION in tarball Ian Romanick (3): docs: Add 10.0 release md5sums Remove a057b83 from the pick list glsl: Don't emit empty declaration warning for a struct specifier Ilia Mirkin (8): mesa: don't leak performance monitors on context destroy nv50: Fix GPU_READING/WRITING bit removal nouveau: avoid leaking fences while waiting nv50: wait on the buf's fence before sticking it into pushbuf nv50: enable h264 and mpeg4 for nv98+ (vp3, vp4.0) nouveau/video: update h264 picparm field names based on usage nouveau/video: update a few more h264 picparm field names nv50: report 15 max inputs for fragment programs Jordan Justen (1): dri megadriver_stub: add compatibility for older DRI loaders Kristian Høgsberg (2): egl/wayland: Damage INT32_MAX x INT32_MAX region for eglSwapBuffers egl/wayland: Send commit after flushing the driver context Maarten Lankhorst (1): nouveau: Fix compiler warning regression Paul Berry (1): i965/gen6: Fix multisample resolve blits for luminance/intensity 32F formats. Thomas Hellstrom (1): st/xa: Bump major version number to 2 Tom Stellard (2): r300/compiler/tests: Fix segfault r300/compiler/tests: Fix line length check in test parser --- Makefile.am | 2 VERSION | 2 bin/.cherry-ignore | 5 docs/relnotes/10.0.1.html | 147 ++++++++++ docs/relnotes/10.0.html | 4 src/egl/drivers/dri2/platform_wayland.c | 21 + src/gallium/drivers/nouveau/nouveau_buffer.c | 3 src/gallium/drivers/nouveau/nouveau_fence.c | 11 src/gallium/drivers/nouveau/nouveau_vp3_video.c | 7 src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c | 61 ++-- src/gallium/drivers/nouveau/nv50/nv50_screen.c | 2 src/gallium/drivers/nouveau/nv50/nv50_state_validate.c | 4 src/gallium/drivers/nouveau/nv50/nv50_tex.c | 2 src/gallium/drivers/nouveau/nv50/nv50_vbo.c | 9 src/gallium/drivers/nouveau/nv50/nv98_video.c | 6 src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c | 11 src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c | 4 src/gallium/state_trackers/xa/xa_tracker.h | 2 src/glsl/ast_to_hir.cpp | 2 src/mesa/drivers/dri/common/megadriver_stub.c | 126 ++++++++ src/mesa/drivers/dri/i965/brw_blorp_blit.cpp | 15 + src/mesa/drivers/dri/i965/brw_blorp_clear.cpp | 29 - src/mesa/drivers/dri/swrast/swrast.c | 2 src/mesa/main/context.c | 1 src/mesa/main/performance_monitor.c | 19 + src/mesa/main/performance_monitor.h | 3 26 files changed, 413 insertions(+), 87 deletions(-) ---