Tag 'mesa-10.2.4' created by Carl Worth <cwo...@cworth.org> at 2014-07-18 19:58 +0000
Mesa 10.2.4 release -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABCgAGBQJTyXxeAAoJEGACM7qeVNxhMFEP/3gECx0U0jF1/nWjms5lESB2 CJPkkbP8Lp1vKC4R4B+QIZ88nhwD33dj5LsiXVEHw8aOW5ha0gJU6ZX3CnSDCJ75 Gke23TdzSrgAO0A/gzCKfF59l2KtKnjPW8VaVYFzOYENXeyaSGRkx2uHzc8Ji8Zp 5Q+nov58iULPuY4szuweZsooxx/1Fuf1MThfnMfKljp08m4nStDQcCksnRZoJbZs rXWGaL+NlL5iBcMdGGBSJ1Ml/jTurNS5jpYKdM3djXqqw9t/gsGeE5o0Mz8swcot rotl+6vLDMjzKoJIs8AZI9xqi38zm9fW3q7V3MPINKk7L+1ZXdPKuvQ2iVh4lbha oc+UrUxGzlgpwkfRtu1mXr/6chx9b3liWk8yEC1NtgilYqLSocQ8WbBixvLqXwe0 s1H6MYfEYQyKwPRbrPYGa5/+NL5e0nc0rkcdq29N8G0J04BHAZFI6y/32FQYj7wR vqbzzT4zwLVNUUZt+EG+WFtQVRKartEntoejkJ+4J6Ft5+9NhRop5bgVuZSDRdFj weDxz9n1nNH8hYnbdZ5130W5+6Em8alQFoAkvQ4n5zmppM+HeYVnXwkooGdTGomy j3SzztVquCjUy98uwQEgRwpy+uspsJRpHmrGHsbO92WbGNP8gxfF2HHkdl0Mrc0S rzuAC/Sws1+8lMsWUsmC =0EdR -----END PGP SIGNATURE----- Changes since mesa-10.2.3: Abdiel Janulgue (3): i965/fs: Refactor check for potential copy propagated instructions. i965/fs: skip copy-propate for logical instructions with negated src entries i965/vec4: skip copy-propate for logical instructions with negated src entries Brian Paul (3): mesa: fix geometry shader memory leaks st/mesa: fix geometry shader memory leak gallium/u_blitter: fix some shader memory leaks Carl Worth (3): docs: Add sha256 checksums for the 10.2.3 release Update VERSION to 10.2.4 Add release notes for 10.2.4 Eric Anholt (1): i965: Generalize the pixel_x/y workaround for all UW types. Ilia Mirkin (4): nv50/ir: retrieve shadow compare from first arg nv50/ir: ignore bias for samplerCubeShadow on nv50 nvc0/ir: do quadops on the right texture coordinates for TXD nvc0/ir: use manual TXD when offsets are involved Jordan Justen (1): i965: Add auxiliary surface field #defines for Broadwell. Kenneth Graunke (9): i965: Don't copy propagate abs into Broadwell logic instructions. i965: Set execution size to 8 for instructions with force_sechalf set. i965/fs: Set force_uncompressed and force_sechalf on samplepos setup. i965/fs: Use WE_all for gl_SampleID header register munging. i965: Add plumbing for Broadwell's auxiliary surface support. i965: Drop SINT workaround for CMS layout on Broadwell. i965: Hook up the MCS buffers in SURFACE_STATE on Broadwell. i965: Add 2x MSAA support to the MCS allocation function. i965: Enable compressed multisample support (CMS) on Broadwell. Marek Olšák (4): gallium: fix u_default_transfer_inline_write for textures st/mesa: fix samplerCubeShadow with bias radeonsi: fix samplerCubeShadow with bias radeonsi: add support for TXB2 Matt Turner (8): i965/vec4: Don't return void from a void function. i965/vec4: Don't fix_math_operand() on Gen >= 8. i965/fs: Don't fix_math_operand() on Gen >= 8. i965/fs: Make try_constant_propagate() static. i965/fs: Constant propagate into 2-src math instructions on Gen8. i965/vec4: Constant propagate into 2-src math instructions on Gen8. i965/fs: Don't use brw_imm_* unnecessarily. i965/fs: Set correct number of regs_written for MCS fetches. --- VERSION | 2 docs/relnotes/10.2.3.html | 3 docs/relnotes/10.2.4.html | 125 ++++++++++ src/gallium/auxiliary/util/u_blitter.c | 9 src/gallium/auxiliary/util/u_transfer.c | 4 src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp | 2 src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nv50.cpp | 10 src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp | 8 src/gallium/drivers/radeonsi/si_shader.c | 9 src/mesa/drivers/dri/i965/brw_defines.h | 10 src/mesa/drivers/dri/i965/brw_fs.cpp | 34 +- src/mesa/drivers/dri/i965/brw_fs.h | 1 src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp | 54 +++- src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp | 8 src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 12 src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp | 25 +- src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp | 16 - src/mesa/drivers/dri/i965/gen8_fs_generator.cpp | 2 src/mesa/drivers/dri/i965/gen8_surface_state.c | 54 +++- src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 13 - src/mesa/main/context.c | 3 src/mesa/main/shared.c | 1 src/mesa/state_tracker/st_context.c | 1 src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 8 24 files changed, 339 insertions(+), 75 deletions(-) ---