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

xserver-xorg-video-ati: Changes to 'refs/tags/xserver-xorg-video-ati-1_6.13.1-1'



Tag 'xserver-xorg-video-ati-1_6.13.1-1' created by Brice Goglin <bgoglin@debian.org> at 2010-07-07 19:04 +0000

Tagging upload of xserver-xorg-video-ati 1:6.13.1-1 to unstable.

Changes since xserver-xorg-video-ati-1_6.13.0-2:
Alex Deucher (35):
      change version post release
      radeon: don't setup Xv on rn50
      radeon: add some new pci ids
      Xv overlay: set scalerwidth to 1920 on r3xx/r4xx chips
      atom: disable TV encoder when VGA is in use
      radeon: add support for pll algo selection
      radeon/kms: fix crash when using more than two heads
      radeon/kms: fix possible crtc mask for evergreen
      Xv: track vtx_count, is_planar in port priv
      r1xx textured video: split into prepare and draw functions
      r2xx textured video: split into prepare and draw functions
      r3xx textured video: split into prepare and draw functions
      r5xx textured video: split into prepare and draw functions
      r1xx texvid: deal with large numbers of verts
      r2xx texvid: deal with large numbers of verts
      r3xx texvid: deal with large numbers of verts
      r5xx texvid: deal with large numbers of verts
      r3xx-r5xx: fix vertex units
      r3xx: fix gb pipe setup for SE cards
      radeon: fix pll_out_min default for pre-avivo
      r1xx/r2xx EXA: handle RepeatNone properly with transforms
      r2xx exa: fix typo in 27c3326863deae36bc35e2c3b73fffd400208ff1
      dri2: use radeon_pick_best_crtc()
      evergreen: explicitly disable accel on evergreen
      radeon: fix rn50 cloning with kms
      r6xx/r7xx accel: remove some duplicate emits and minor clean up
      r6xx/r7xx: reorg default and clipping state emit
      r6xx/r7xx: remove unnecessary state emit
      r3xx-r5xx Xv: disable bicubic filtering by default
      radeon: fix depth 16 with ums
      r6xx/r7xx: macro safety fixes
      r6xx/r7xx accel: add back some additional default state
      r6xx/r7xx: fix miscount in state emit
      r6xx shader: use ADDR() for CF_DWORD0
      remove rv100 quirk

Brice Goglin (5):
      Merge tag 'xf86-video-ati-6.13.1' into debian-unstable
      New upstream release
      Build depend on libudev-dev
      Bump Standards-Version to 3.9.0
      Prepare changelog for upload

Cooper Yuan (1):
      Remove HDP_SOFT_RESET function, there is no need to reset HDP block.

Dave Airlie (8):
      kms: add uevent support.
      radeon: add FireMV 2400 pci id.
      xv: fix Xv on M6/RV100 under KMS.
      drmmode: fix big endian issue with properties.
      radeon: set proper stride for cursor in tiling flags.
      radeon: fixup last fix, use CURSOR_WIDTH not RADEON_CURSOR_WIDTH.
      radeon: fix support for 1.9 server master.
      set version for release

Gaetan Nadon (1):
      COPYING: replace stub file with actual copyright notices

Jerome Glisse (1):
      kms: add support for the MSC swap & sync API

Marek Olšák (3):
      r3xx-r5xx: fix texturing with small macrotiled pixmaps
      rs740: follow macro-switch too
      r3xx-r5xx: enable color tiling by default on KMS

Michel Dänzer (3):
      FB/MMIO_cnt should be ints, not pointers.
      Convert x(c)alloc/xfree to m/calloc/free.
      DRI2: Fix up confusion between windows and pixmaps.

Owain Ainsworth (1):
      Reference count shared driver mappings.

Owain G. Ainsworth (3):
      Remove remnants of the ShowCache option.
      Kill per-context SAREA support.
      Make consistent use of fbOffset and share fb mappings.

Wolfram (1):
      r6xx/r7xx: fix ums cmd buffer leak

---
 COPYING                           |  133 +++++++
 ChangeLog                         |  673 ++++++++++++++++++++++++++++++++++++++
 configure.ac                      |    9 
 debian/changelog                  |    8 
 debian/control                    |    3 
 man/radeon.man                    |    2 
 src/Makefile.am                   |    5 
 src/ati_pciids_gen.h              |    7 
 src/atombios_crtc.c               |   22 +
 src/atombios_output.c             |    8 
 src/drmmode_display.c             |  152 +++++++-
 src/drmmode_display.h             |   16 
 src/legacy_crtc.c                 |   28 +
 src/legacy_output.c               |    6 
 src/pcidb/ati_pciids.csv          |    7 
 src/r600_exa.c                    |    2 
 src/r600_shader.c                 |    2 
 src/r600_state.h                  |    6 
 src/r6xx_accel.c                  |  383 +++++++++------------
 src/radeon.h                      |   15 
 src/radeon_accel.c                |   22 -
 src/radeon_accelfuncs.c           |    2 
 src/radeon_atombios.c             |   59 +--
 src/radeon_bios.c                 |   19 -
 src/radeon_chipinfo_gen.h         |    7 
 src/radeon_chipset_gen.h          |    7 
 src/radeon_commonfuncs.c          |   15 
 src/radeon_crtc.c                 |   67 +--
 src/radeon_cursor.c               |    4 
 src/radeon_dri.c                  |  135 ++-----
 src/radeon_dri.h                  |    4 
 src/radeon_dri2.c                 |  493 ++++++++++++++++++++++++++-
 src/radeon_dri2.h                 |    6 
 src/radeon_driver.c               |  104 +++--
 src/radeon_exa.c                  |   51 ++
 src/radeon_exa_funcs.c            |    2 
 src/radeon_exa_render.c           |   46 ++
 src/radeon_kms.c                  |   72 ++--
 src/radeon_output.c               |    4 
 src/radeon_pci_chipset_gen.h      |    7 
 src/radeon_pci_device_match_gen.h |    7 
 src/radeon_probe.c                |    8 
 src/radeon_probe.h                |    9 
 src/radeon_textured_video.c       |    6 
 src/radeon_textured_videofuncs.c  |  504 +++++++++++++++++++---------
 src/radeon_vbo.c                  |   12 
 src/radeon_video.c                |   42 +-
 src/radeon_video.h                |    2 
 src/radeon_vip.c                  |    2 
 src/theatre200.c                  |    8 
 50 files changed, 2447 insertions(+), 766 deletions(-)
---


Reply to: