[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

mesa: Changes to 'refs/tags/mesa-10.2.4-1'



Tag 'mesa-10.2.4-1' created by Julien Cristau <jcristau@debian.org> at 2014-07-20 09:14 +0000

Tagging upload of mesa 10.2.4-1 to unstable.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAABAgAGBQJTy4h1AAoJEDEBgAUJBeQMzmIP/i7CFGkXbn92lD2Ef6YUb572
86LY8SKUxZ+3/QbEPP+TN9eYQV10MlIuyXn451SwukESRyrsXC9JYNrwO9lrjh1l
u4tiBcW3bD0aOt/39PJf9LfmFiTS1++YIWQglUafaJaq4IH3akXcG/N7Ekf1GiEn
ADJTUEJO6fSaKjsFXLFHTEpIoXwQZPPTx7cuBf91ACSH+xijDUJBRI8cqj8I6GBC
umaCeaHyQK+OE1RUJc4pZxyucUxFTTE5/ZjqD74nRjt9Drw66jFEVrop3edwqysX
Nk/7O5LUDpwkbl8Ip6QeYTGSykqnHo9N1vwe6sSeGfRC+MQQjl41J2jf/RIZCE72
JCznxegfsW5ZOOqdtS9Clu/7kj9jt/n/KRtLAMmnz0THFplGiGmTbvVjiIGZurGR
k2EHeuFQmOR1QzNle2pB1YcIBqIuBMiuHHsCp1Ucb+IehxeOVrbXswo9ggHbBQuV
JBn8HYFkkW5rsw+N3F4Ez8ha4xg9SGtj+RBsu34K/Nxd9aXRqrc3oWjrQUKG52B1
Lw/ZpyW+8/bldEVoAYXeq4c1Q/P08bU/1tWjlQpMVYmCoJDa/JL/n0ja8kUGa5sK
MgCamUa7HFzCHk8T7TvzCc1QQluTRtptdRgnkm7Bdh5t2uWhjRp0Ua1qHDDceHty
4hDWqHQg7Tacq0kxO4Op
=fVCH
-----END PGP SIGNATURE-----

Changes since mesa-10.2.3-1:
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.

Julien Cristau (3):
      Merge tag 'mesa-10.2.4' into debian-unstable
      Bump changelog
      Upload to unstable

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 
 debian/changelog                                              |    6 
 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 
 25 files changed, 345 insertions(+), 75 deletions(-)
---


Reply to: