xserver-xorg-video-trident: Changes to 'upstream-experimental'

2013-09-24 Thread Maarten Lankhorst
 src/trident_dga.c|4 ++--
 src/trident_driver.c |2 --
 2 files changed, 2 insertions(+), 4 deletions(-)

New commits:
commit 48c15909691e28ad2c188a2978b1c8ef3d9d8760
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Wed Sep 26 11:01:26 2012 +0300

Fix loading the driver without XAA

diff --git a/src/trident_dga.c b/src/trident_dga.c
index 0263aa7..c4b5b9a 100644
--- a/src/trident_dga.c
+++ b/src/trident_dga.c
@@ -37,10 +37,10 @@
 static Bool TRIDENT_OpenFramebuffer(ScrnInfoPtr, char **, unsigned char **, 
int *, int *, int *);
 static Bool TRIDENT_SetMode(ScrnInfoPtr, DGAModePtr);
-static void TRIDENT_Sync(ScrnInfoPtr);
 static int  TRIDENT_GetViewport(ScrnInfoPtr);
 static void TRIDENT_SetViewport(ScrnInfoPtr, int, int, int);
 #ifdef HAVE_XAA_H
+static void TRIDENT_Sync(ScrnInfoPtr);
 static void TRIDENT_FillRect(ScrnInfoPtr, int, int, int, int, unsigned long);
 static void TRIDENT_BlitRect(ScrnInfoPtr, int, int, int, int, int, int);
 #if 0
@@ -56,8 +56,8 @@ DGAFunctionRec TRIDENTDGAFuncs = {
TRIDENT_SetMode,
TRIDENT_SetViewport,
TRIDENT_GetViewport,
-   TRIDENT_Sync,
 #ifdef HAVE_XAA_H
+   TRIDENT_Sync,
TRIDENT_FillRect,
TRIDENT_BlitRect,
 #if 0

commit 30787294c837aefa8820b6f76f00fe30d4e54181
Author: Adam Jackson a...@redhat.com
Date:   Tue Sep 25 08:55:01 2012 -0400

Remove mibstore.h

Signed-off-by: Adam Jackson a...@redhat.com

diff --git a/src/trident_driver.c b/src/trident_driver.c
index dc12b76..408c870 100644
--- a/src/trident_driver.c
+++ b/src/trident_driver.c
@@ -56,7 +56,6 @@
 
 #include mipointer.h
 
-#include mibstore.h
 #include shadow.h
 #include trident.h
 #include trident_regs.h
@@ -3037,7 +3036,6 @@ TRIDENTScreenInit(SCREEN_INIT_ARGS_DECL)
TridentAccelInit(pScreen);
 }
 
-miInitializeBackingStore(pScreen);
 xf86SetBackingStore(pScreen);
 
 /* Initialise cursor functions */


-- 
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/e1vorsa-0004eb...@vasks.debian.org



xserver-xorg-video-trident: Changes to 'upstream-experimental'

2012-07-19 Thread Maarten Lankhorst
 configure.ac  |   59 ++--
 man/Makefile.am   |   22 +-
 man/trident.man   |1 
 src/Makefile.am   |1 
 src/blade_accel.c |   11 ++-
 src/blade_accel_exa.c |   21 +
 src/compat-api.h  |   99 +++
 src/image_accel.c |   12 ++-
 src/trident.h |   18 +++--
 src/trident_accel.c   |   11 ++-
 src/trident_bank.c|   15 +---
 src/trident_dac.c |5 -
 src/trident_dga.c |   27 ---
 src/trident_driver.c  |  178 +-
 src/trident_i2c.c |3 
 src/trident_shadow.c  |   11 +--
 src/trident_video.c   |   42 +--
 src/tridenthelper.c   |1 
 src/tvga_dac.c|1 
 src/xp4_accel.c   |   11 ++-
 src/xp4_accel_exa.c   |   13 +--
 src/xp_accel.c|   12 ++-
 22 files changed, 367 insertions(+), 207 deletions(-)

New commits:
commit 3098fe7193cbfe4a885a60b93e71796b70e4fa2a
Author: Dave Airlie airl...@redhat.com
Date:   Tue Jul 17 16:05:09 2012 +1000

xf86-video-trident: bump to version 1.3.6

Signed-off-by: Dave Airlie airl...@redhat.com

diff --git a/configure.ac b/configure.ac
index 31bc459..eeb895e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-trident],
-[1.3.5],
+[1.3.6],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-video-trident])
 AC_CONFIG_SRCDIR([Makefile.am])

commit f02709607cb353db1e89a909ff01a6941f535ab4
Author: Dave Airlie airl...@redhat.com
Date:   Mon Jul 16 03:17:51 2012 +0100

trident: add support for building without XAA

fix build for removal of XAA from server.

Signed-off-by: Dave Airlie airl...@redhat.com

diff --git a/configure.ac b/configure.ac
index cab1fb7..31bc459 100644
--- a/configure.ac
+++ b/configure.ac
@@ -82,6 +82,24 @@ AC_CHECK_DECL(XSERVER_LIBPCIACCESS,
   [#include xorg-server.h])
 CPPFLAGS=$SAVE_CPPFLAGS
 
+AC_ARG_ENABLE(xaa,
+  AS_HELP_STRING([--enable-xaa],
+ [Enable legacy X Acceleration Architecture (XAA) 
[default=auto]]),
+  [XAA=$enableval],
+  [XAA=auto])
+if test x$XAA != xno; then
+save_CFLAGS=$CFLAGS
+save_CPPFLAGS=$CPPFLAGS
+CFLAGS=$XORG_CFLAGS
+CPPFLAGS=$XORG_CFLAGS
+AC_CHECK_HEADERS([xaa.h], XAA=yes, XAA=no)
+CFLAGS=$save_CFLAGS
+CPPFLAGS=$save_CPPFLAGS
+fi
+AC_MSG_CHECKING([whether to include XAA support])
+AM_CONDITIONAL(XAA, test x$XAA = xyes)
+AC_MSG_RESULT([$XAA])
+
 if test x$XSERVER_LIBPCIACCESS = xyes; then
 PKG_CHECK_MODULES([PCIACCESS], [pciaccess = 0.8.0])
 XORG_CFLAGS=$XORG_CFLAGS $PCIACCESS_CFLAGS
diff --git a/src/blade_accel.c b/src/blade_accel.c
index b8954e6..1645e1d 100644
--- a/src/blade_accel.c
+++ b/src/blade_accel.c
@@ -38,6 +38,7 @@
 #include trident.h
 #include trident_regs.h
 
+#ifdef HAVE_XAA_H
 #include xaarop.h
 #include xaalocal.h
 
@@ -145,10 +146,12 @@ BladeInitializeAccelerator(ScrnInfoPtr pScrn)
 #endif
 BLADE_OUT(0x216C, 0);
 }
+#endif
 
 Bool
 BladeXaaInit(ScreenPtr pScreen)
 {
+#ifdef HAVE_XAA_H
 XAAInfoRecPtr infoPtr;
 ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen);
 TRIDENTPtr pTrident = TRIDENTPTR(pScrn);
@@ -247,8 +250,12 @@ BladeXaaInit(ScreenPtr pScreen)
 infoPtr-ImageWriteRange = 0x1;
 
 return(XAAInit(pScreen, infoPtr));
+#else
+return FALSE;
+#endif
 }
 
+#ifdef HAVE_XAA_H
 static void
 BladeSync(ScrnInfoPtr pScrn)
 {
@@ -701,3 +708,4 @@ static void BladeSubsequentImageWriteRect(
 BLADE_OUT(0x2108, y16 | (x0xfff));
 BLADE_OUT(0x210C, ((y+h-1)0xfff)16 | ((x+w-1)0xfff));
 }
+#endif
diff --git a/src/image_accel.c b/src/image_accel.c
index 9a9388d..4dc13ff 100644
--- a/src/image_accel.c
+++ b/src/image_accel.c
@@ -38,6 +38,7 @@
 #include trident.h
 #include trident_regs.h
 
+#ifdef HAVE_XAA_H
 #include xaarop.h
 #include xaalocal.h
 
@@ -93,6 +94,7 @@ static void ImageSubsequentScanlineCPUToScreenColorExpandFill(
int y, int w, int h, int skipleft);
 static void ImageSubsequentColorExpandScanline(ScrnInfoPtr pScrn, int bufno);
 
+
 static void
 ImageInitializeAccelerator(ScrnInfoPtr pScrn)
 {
@@ -128,10 +130,12 @@ ImageInitializeAccelerator(ScrnInfoPtr pScrn)
 pTrident-Clipping = FALSE;
 pTrident-DstEnable = FALSE;
 }
+#endif
 
 Bool
 ImageAccelInit(ScreenPtr pScreen)
 {
+#ifdef HAVE_XAA_H
 XAAInfoRecPtr infoPtr;
 ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen);
 TRIDENTPtr pTrident = TRIDENTPTR(pScrn);
@@ -244,8 +248,12 @@ ImageAccelInit(ScreenPtr pScreen)
   }
 
 return(XAAInit(pScreen, infoPtr));
+#else
+return FALSE;
+#endif
 }
 
+#ifdef HAVE_XAA_H
 static void
 ImageSync(ScrnInfoPtr pScrn)
 {
@@ -636,3 +644,4 @@ ImageSubsequentImageWriteScanline(ScrnInfoPtr pScrn, int 
bufno)
 if (!pTrident-h)
ImageSync(pScrn);
 }
+#endif
diff --git 

xserver-xorg-video-trident: Changes to 'upstream-experimental'

2010-08-03 Thread Christopher Halse Rogers
 .gitignore   |   70 +--
 COPYING  |   67 +++---
 ChangeLog|  155 ---
 Makefile.am  |   12 +++
 README   |   20 ++
 configure.ac |   26 ++--
 man/.cvsignore   |2 
 man/Makefile.am  |   41 ++---
 man/trident.man  |2 
 src/.cvsignore   |6 -
 src/Makefile.am  |1 
 src/trident.h|   13 +++-
 src/trident_dac.c|3 
 src/trident_driver.c |  143 ++-
 src/trident_shadow.c |1 
 src/trident_video.c  |1 
 src/tridenthelper.c  |1 
 src/tvga_dac.c   |3 
 18 files changed, 242 insertions(+), 325 deletions(-)

New commits:
commit b5d17329ae1746bc95ac211c1325df86982e0eb1
Author: Dave Airlie airl...@redhat.com
Date:   Mon Jul 5 14:32:39 2010 +1000

trident 1.3.4

diff --git a/configure.ac b/configure.ac
index ebff147..be54427 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-trident],
-1.3.3,
+1.3.4,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-video-trident)
 

commit ea2f02a84ad5a51a39c0ae55fa5aa785360d3830
Author: Gaetan Nadon mems...@videotron.ca
Date:   Sun Jun 13 12:34:21 2010 -0400

COPYING: replace stub file with actual Copyright notices.

Signed-off-by: Gaetan Nadon mems...@videotron.ca

diff --git a/COPYING b/COPYING
index 7f33cbf..42cdf3b 100644
--- a/COPYING
+++ b/COPYING
@@ -1,12 +1,63 @@
-This is a stub file.  This package has not yet had its complete licensing
-information compiled.  Please see the individual source files for details on
-your rights to use and modify this software.
+Copyright 1992-2003 by Alan Hourihane, North Wales, UK.
 
-Please submit updated COPYING files to the Xorg bugzilla:
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that
+the above copyright notice appear in all copies and that both that
+copyright notice and this permission notice appear in supporting
+documentation, and that the name of Alan Hourihane not be used in
+advertising or publicity pertaining to distribution of the software without
+specific, written prior permission.  Alan Hourihane makes no representations
+about the suitability of this software for any purpose.  It is provided
+as is without express or implied warranty.
 
-https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
+ALAN HOURIHANE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+EVENT SHALL ALAN HOURIHANE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
 
-All licensing questions regarding this software should be directed at the
-Xorg mailing list:
+Copyright 1997-2003 by Alan Hourihane, North Wales, UK.
+Copyright 2006 by Alan Hourihane, North Wales, UK.
+Copyright (c) 2006, Jesse Barnes jbar...@virtuousgeek.org
+
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that
+the above copyright notice appear in all copies and that both that
+copyright notice and this permission notice appear in supporting
+documentation, and that the name of the authors not be used in
+advertising or publicity pertaining to distribution of the software without
+specific, written prior permission.  The authors make no representations
+about the suitability of this software for any purpose.  It is provided
+as is without express or implied warranty.
+
+THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
+
+Copyright 2007 George Sapountzis
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the Software),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice (including the next
+paragraph) shall be included in all copies or 

xserver-xorg-video-trident: Changes to 'upstream-experimental'

2008-03-21 Thread Julien Cristau
Rebased ref, commits from common ancestor:
commit ac4bce50754528efbf55daa87dd4992ac70c4af2
Author: Adam Jackson [EMAIL PROTECTED]
Date:   Wed Mar 19 15:42:53 2008 -0400

trident 1.3.0

diff --git a/configure.ac b/configure.ac
index 45aea41..e0b3b18 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-trident],
-1.2.4,
+1.3.0,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-video-trident)
 

commit 012794d5aa4cf862f7d5b83d744acc2d5a13bf52
Author: Adam Jackson [EMAIL PROTECTED]
Date:   Wed Mar 19 15:41:46 2008 -0400

Fix distcheck

diff --git a/src/Makefile.am b/src/Makefile.am
index 8c309a3..216bad4 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -39,6 +39,7 @@ trident_drv_la_SOURCES = \
  trident_driver.c \
  trident.h \
  tridenthelper.c \
+tridentpcirename.h \
  trident_i2c.c \
  trident_regs.h \
  trident_shadow.c \

commit 6e64c2a2d8bfc9cf3daf5f0df430ede5a5d0d7fb
Author: Adam Jackson [EMAIL PROTECTED]
Date:   Wed Mar 19 15:40:11 2008 -0400

Death to RCS tags.

diff --git a/src/blade_accel.c b/src/blade_accel.c
index a2725d3..31d97df 100644
--- a/src/blade_accel.c
+++ b/src/blade_accel.c
@@ -23,7 +23,6 @@
  * 
  * Trident Blade3D accelerated options.
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/blade_accel.c,v 
1.21 2003/10/30 13:38:01 alanh Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
diff --git a/src/image_accel.c b/src/image_accel.c
index 479de5e..f46c6a3 100644
--- a/src/image_accel.c
+++ b/src/image_accel.c
@@ -23,7 +23,6 @@
  * 
  * Trident 3DImage' accelerated options.
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/image_accel.c,v 
1.26 2003/10/30 13:38:01 alanh Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
diff --git a/src/trident.h b/src/trident.h
index ceca43e..6b96649 100644
--- a/src/trident.h
+++ b/src/trident.h
@@ -21,7 +21,6 @@
  *
  * Authors:  Alan Hourihane, [EMAIL PROTECTED]
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident.h,v 1.59 
2003/09/05 22:07:28 alanh Exp $ */
 /*#define VBE_INFO*/
 
 #ifndef _TRIDENT_H_
diff --git a/src/trident_accel.c b/src/trident_accel.c
index d5d033d..c2087cc 100644
--- a/src/trident_accel.c
+++ b/src/trident_accel.c
@@ -23,7 +23,6 @@
  * 
  * Trident accelerated options.
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident_accel.c,v 
1.28 2003/10/30 13:38:01 alanh Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
diff --git a/src/trident_bank.c b/src/trident_bank.c
index be0536a..824d1ac 100644
--- a/src/trident_bank.c
+++ b/src/trident_bank.c
@@ -21,7 +21,6 @@
  *
  * Author:  Alan Hourihane, [EMAIL PROTECTED]
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident_bank.c,v 
1.4 2000/12/07 16:48:04 alanh Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
diff --git a/src/trident_dac.c b/src/trident_dac.c
index 1324ddf..6240b7f 100644
--- a/src/trident_dac.c
+++ b/src/trident_dac.c
@@ -21,7 +21,6 @@
  *
  * Author:  Alan Hourihane, [EMAIL PROTECTED]
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident_dac.c,v 
1.79 2003/11/03 05:11:42 tsi Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
diff --git a/src/trident_dga.c b/src/trident_dga.c
index b91ee74..78fa8f4 100644
--- a/src/trident_dga.c
+++ b/src/trident_dga.c
@@ -21,7 +21,6 @@
  *
  * Authors:  Alan Hourihane, [EMAIL PROTECTED]
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident_dga.c,v 
1.4 2002/10/08 22:14:11 tsi Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
diff --git a/src/trident_driver.c b/src/trident_driver.c
index 5be9ee9..b5ab968 100644
--- a/src/trident_driver.c
+++ b/src/trident_driver.c
@@ -28,7 +28,6 @@
  * Massimiliano Ghilardi, [EMAIL PROTECTED], some fixes to the
  *clockchip programming code.
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident_driver.c,v 
1.190 2004/01/21 22:31:54 alanh Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
diff --git a/src/trident_i2c.c b/src/trident_i2c.c
index bf3a273..1a1991e 100644
--- a/src/trident_i2c.c
+++ b/src/trident_i2c.c
@@ -1,4 +1,3 @@
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident_i2c.c,v 
1.2 1999/01/23 09:55:59 dawes Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
diff --git a/src/trident_regs.h b/src/trident_regs.h
index c0bc99c..aacfa74 100644
--- a/src/trident_regs.h
+++ b/src/trident_regs.h
@@ -21,7 +21,6 @@
  *
  * Author:  Alan Hourihane, [EMAIL PROTECTED]
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident_regs.h,v 
1.27 2003/09/05 22:07:29 alanh Exp $ */
 
 #define DEBUG 1
 
diff --git a/src/trident_shadow.c b/src/trident_shadow.c
index 9f56a61..d2169c8 100644
--- a/src/trident_shadow.c
+++ b/src/trident_shadow.c
@@ -1,4 +1,3 @@
-/* $XFree86: 

xserver-xorg-video-trident: Changes to 'upstream-experimental'

2007-08-20 Thread David Nusinow
 ChangeLog |  573 
 Makefile.in   |  653 
 aclocal.m4| 7951 ++
 config.guess  | 1500 ++
 config.h.in   |   66 
 config.sub| 1616 ++
 configure |22205 ++
 debian/changelog  |  128 
 debian/compat |1 
 debian/control|   26 
 debian/copyright  |   19 
 debian/rules  |   91 
 debian/watch  |2 
 debian/xserver-xorg-video-trident.install |2 
 debian/xserver-xorg-video-trident.links   |1 
 debian/xsfbs/xsfbs-autoreconf.mk  |  150 
 debian/xsfbs/xsfbs.mk |  379 
 debian/xsfbs/xsfbs.sh |  907 +
 depcomp   |  530 
 install-sh|  323 
 ltmain.sh | 6871 +
 man/Makefile.in   |  419 
 missing   |  360 
 mkinstalldirs |  158 
 src/Makefile.in   |  543 
 src/tridentramdac.c   |   70 
 26 files changed, 45389 insertions(+), 155 deletions(-)

New commits:
commit 5e4b374f26a772b75511b9c84849a95adba9a45f
Author: Brice Goglin [EMAIL PROTECTED]
Date:   Mon Apr 30 01:22:23 2007 +0200

Update upstream ChangeLog

diff --git a/ChangeLog b/ChangeLog
index 4809cab..a21321e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,155 +1,418 @@
-2006-04-07  Adam Jackson  [EMAIL PROTECTED]
-
-   * configure.ac:
-   * src/trident_driver.c:
-   Bump to 1.2.1 for Xv changes.
-
-2006-04-07  Aaron Plattner  [EMAIL PROTECTED]
-
-   * src/trident_video.c: (TRIDENTPutImage):
-   Add a DrawablePtr argument to the XV functions to pave the way for
-   redirected video.
-
-2006-04-07  Adam Jackson  [EMAIL PROTECTED]
-
-   * configure.ac:
-   * src/blade_accel.c:
-   * src/blade_accel_exa.c:
-   * src/image_accel.c:
-   * src/trident.h:
-   * src/trident_accel.c:
-   * src/trident_bank.c:
-   * src/trident_dac.c:
-   * src/trident_dga.c:
-   * src/trident_driver.c:
-   * src/trident_i2c.c:
-   * src/trident_shadow.c:
-   * src/trident_tv.c:
-   * src/trident_video.c:
-   * src/tridenthelper.c:
-   * src/tridentramdac.c:
-   * src/tvga_dac.c:
-   * src/xp4_accel.c:
-   * src/xp4_accel_exa.c:
-   * src/xp_accel.c:
-   Unlibcwrap.  Bump server version requirement.  Bump to 1.2.0.
-
-2006-04-06  Adam Jackson  [EMAIL PROTECTED]
-
-   * src/trident.h:
-   Coverity #500: Size the tridentRegsClock array properly.
-
-2006-03-14  Alan Hourihane  [EMAIL PROTECTED]
-
-   * src/blade_accel_exa.c: (BladeExaInit):
-   * src/xp4_accel_exa.c: (XP4ExaInit):
-   Change virtualX to displayWidth (caught by Eric Anholt)
-
-2006-03-13  Alan Hourihane  [EMAIL PROTECTED]
-
-   * src/blade_accel_exa.c: (BladeExaInit):
-   * src/trident_driver.c: (TRIDENTPreInit):
-   * src/xp4_accel_exa.c: (XP4ExaInit):
-   EXA fixups for version 2
-   Add missing break statement which confused XP4  XP5.
-   Force 128MB XP5 to 64MB for now.
-
-2006-02-21  Alan Hourihane  [EMAIL PROTECTED]
-
-   * man/trident.man:
-   * src/Makefile.am:
-   * src/blade_accel.c: (BladeXaaInit):
-   * src/blade_accel_exa.c: (GetCopyROP), (GetDepth), (PrepareSolid),
-   (Solid), (DoneSolid), (PrepareCopy), (Copy), (DoneCopy),
-   (CheckComposite), (PrepareComposite), (Composite), (DoneComposite),
-   (UploadToScreen), (DownloadFromScreen), (MarkSync),
-   (BladeDisableClipping), (WaitMarker), (PrepareAccess),
-   (FinishAccess), (BladeSetClippingRectangle),
-   (BladeInitializeAccelerator), (BladeExaInit):
-   * src/trident.h:
-   * src/trident_driver.c: (tridentSetup), (TRIDENTProbe),
-   (TRIDENTPreInit), (TRIDENTMapMem), (TRIDENTScreenInit),
-   (TRIDENTLeaveVT), (TRIDENTCloseScreen):
-   * src/trident_regs.h:
-   * src/xp4_accel.c: (XP4InitializeAccelerator), (XP4XaaInit),
-   (XP4Sync), (XP4SetupForScreenToScreenCopy),
-   (XP4SubsequentScreenToScreenCopy), (XP4SetupForSolidLine),
-   (XP4SubsequentSolidBresenhamLine), (XP4SubsequentSolidHorVertLine),
-   (XP4SetupForDashedLine), (XP4SubsequentDashedBresenhamLine),
-   (XP4SetupForFillRectSolid), (XP4SubsequentFillRectSolid),
-   (MoveDWORDS), (MoveDWORDS_FixedBase),
-   (XP4SetupForMono8x8PatternFill),
-   (XP4SubsequentMono8x8PatternFillRect),
-   (XP4SetupForCPUToScreenColorExpandFill),
-   (XP4SubsequentCPUToScreenColorExpandFill):
-   * src/xp4_accel_exa.c: (GetCopyROP), (GetPatternROP),
-   (XP4WaitMarker),