Tag 'xserver-xorg-video-nouveau-1_0.0.16+git20120529+ace77b6-1' created by Sven Joachim <svenj...@gmx.de> at 2012-06-02 17:42 +0000
Tagging upload of xserver-xorg-video-nouveau 1:0.0.16+git20120529+ace77b6-1 to experimental. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAABCgAGBQJPylBuAAoJEDsQbnGNazGsZaEP/jAi6ADBPYuL/S7mEsVRX6g/ 9PkZfhiJag49T4vvTT9dmEVgiD9NqFk1yTPxUZLxETjKJcqR9XQUWK8jNpYODKGs J3YiJIajGD7++zxHdweCMYXhwR+ZgoZIH5pI+ddKzscK8kP0HZJo+e7S487PN5cZ 1Z7cCiBVqVotMPeB8IwrfE82PJx12eIghytpEIA2tOLLIKw2GSOTjM9SJWXtIPAx pZktYIVp+Zpz85m42X9h7MwlfRREKCx5wjsknCLPKVslmr/HKtpLYoO8F9R89J8I QKdjkidi388WT5TQlGmj7a2wXrUHfpjD8aCGC01ocdERiUrOXz3tZjsJiWZ140V+ ztUZKxmRqmofMuzQtHuS6V8JvtH0+oA1sL8C1Ob2IAv7lgCpzdfYYTA2G5NPhHsm sXTOXGgIHYRr5HnSnRFHr8yh60Fl3etrPYQ137t0BFR5O6S92MCxGdHi1YV6onWx 25pfFrXayxRpaen2r8mnRYjAlCZNDdFdB35MiAxKmBOtMk3UGpczK7NDMHYziAjd kdLnX+vCODflShf9TiPaOeizVHwd0bhw+A8AzP4zYRYOi2NTVE6gIKy/R6iNIvfs o3qwuxZHc37iHrcwYQvdFP8G1cjP3F4bt3cWcvP1zrUSCHBBwhkrbVbECUvAXaXE qBZ3A2chta3Rd9fibKZ/ =wu5M -----END PGP SIGNATURE----- Changes since xserver-xorg-video-nouveau-1_0.0.16+git20120322+ab7291d-1: Ben Skeggs (22): WIP: port to new libdrm nvc0: replace direct inline m2mf with inline helper to do the same nvc0: do tic/tsc binding only once, at startup nvc0: punt shaders out to a header file nvc0: tidy and cull a heap of fermi init (stuff in default grctx) nvc0: switch to kepler's subchannel assignments (see note) nvc0: create scratch buffer before initialising m2mf nve0: initial exa/xv acceleration for kepler chipsets Keep a single buffer for random accel data, rather than 3 different ones nv30/nv40: upload shaders directly from rankine/curie init nv50: implement and use PUSH_DATAu nv50/exa: perform texcoord transformations in vertex program nv50/exa: support solid pictures nvc0/exa: port recent nv50 changes (vp transform, solid pictures, etc) nv40/exa: do transforms in vertex program nv30/exa: use fixed-function texture matrix for src/mask transforms nv10/exa: use fixed-function texture matrix for transforms nv10/exa: implement support for solid pictures nv30/exa: implement support for solid pictures using register combiners nv40/exa: support for solid pictures nv40/exa: return false from gradient picture setup disable fermi accel on 0.0.16 interface Dave Airlie (5): nouveau: add initial compat-api header nouveau: convert scrn/screen to using new interfaces nouveau: convert two more xf86Screens access to macros nouveau: add compat-api.h to makefile. vl_hwmc: add missing compat include. Francisco Jerez (1): dri2: Don't try to page-flip pixmaps (fdo bug 49351). Maarten Lankhorst (5): Merge remote-tracking branch 'upstream/master' into debian-unstable New upstream snapshot Add 02-drm-nouveau-newabi.patch to build with old libdrm Merge remote-tracking branch 'upstream/master' into debian-unstable New upstream snapshot Marcin Slusarz (1): nv50: add missing pushbuf space check in NV50SyncToVBlank Sven Joachim (4): Amend Maarten's hack by setting AC_SYS_LARGEFILE in configure.ac Bump upstream ChangeLog Add a NEWS.Debian entry for Fermi card users Upload to experimental --- ChangeLog | 252 +++ configure.ac | 2 debian/NEWS.Debian | 8 debian/changelog | 13 debian/patches/02-drm-nouveau-newabi.patch | 2285 +++++++++++++++++++++++++++++ debian/patches/series | 1 src/Makefile.am | 5 src/compat-api.h | 41 src/drmmode_display.c | 46 src/nouveau_dri2.c | 52 src/nouveau_exa.c | 43 src/nouveau_local.h | 186 +- src/nouveau_wfb.c | 4 src/nouveau_xv.c | 85 - src/nv04_accel.h | 83 + src/nv04_exa.c | 528 +++--- src/nv04_xv_blit.c | 262 +-- src/nv10_exa.c | 863 ++++------ src/nv30_exa.c | 979 ++++++------ src/nv30_shaders.c | 347 ---- src/nv30_shaders.h | 72 src/nv30_xv_tex.c | 302 +-- src/nv40_exa.c | 998 +++++++----- src/nv40_xv_tex.c | 293 +-- src/nv50_accel.c | 672 ++++---- src/nv50_accel.h | 66 src/nv50_exa.c | 895 +++++------ src/nv50_xv.c | 381 +--- src/nv_accel_common.c | 584 +++---- src/nv_dma.c | 81 - src/nv_dma.h | 4 src/nv_driver.c | 47 src/nv_include.h | 13 src/nv_proto.h | 7 src/nv_shadow.c | 3 src/nv_type.h | 53 src/nvc0_accel.c | 841 ++-------- src/nvc0_accel.h | 120 - src/nvc0_exa.c | 974 +++++------- src/nvc0_shader.h | 444 +++++ src/nvc0_xv.c | 374 +--- src/nve0_shader.h | 460 +++++ src/vl_hwmc.c | 6 43 files changed, 8226 insertions(+), 5549 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1sasg6-0003ie...@vasks.debian.org