summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2005-04-20 12:25:32 +0000
committerDaniel Stone <daniel@fooishbar.org>2005-04-20 12:25:32 +0000
commite7c8c6f3ecee5c98b71d0ae67e903ee53b3f8b10 (patch)
tree20367aad3415e30237d031f3e1d413670bcbea35
parent9d25428e100e5c1ea50f0b9637876c866faab5bb (diff)
change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h; change "foo.h", "extensions/foo.h" and "X11/foo.h" to <X11/extensions/foo.h> for extension headers, e.g. Xv.h; change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.
-rw-r--r--src/trident_driver.c4
-rw-r--r--src/trident_video.c58
2 files changed, 18 insertions, 44 deletions
diff --git a/src/trident_driver.c b/src/trident_driver.c
index c325f09..b92b490 100644
--- a/src/trident_driver.c
+++ b/src/trident_driver.c
@@ -57,12 +57,12 @@
#ifdef XFreeXDGA
#define _XF86DGA_SERVER_
-#include "extensions/xf86dgastr.h"
+#include <X11/extensions/xf86dgastr.h>
#endif
#include "globals.h"
#define DPMS_SERVER
-#include "extensions/dpms.h"
+#include <X11/extensions/dpms.h>
#include "xf86xv.h"
diff --git a/src/trident_video.c b/src/trident_video.c
index 87cce49..aa5ad74 100644
--- a/src/trident_video.c
+++ b/src/trident_video.c
@@ -21,7 +21,7 @@
*
* Author: Alan Hourihane, alanh@fairlite.demon.co.uk
*/
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident_video.c,v 1.40 2003/09/05 22:07:29 alanh Exp $ */
+/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/trident/trident_video.c,v 1.45 2003/11/10 18:22:34 tsi Exp $ */
#include "xf86.h"
#include "xf86_OSproc.h"
@@ -35,7 +35,7 @@
#include "trident.h"
#include "trident_regs.h"
-#include "Xv.h"
+#include <X11/extensions/Xv.h>
#include "xaa.h"
#include "xaalocal.h"
#include "dixstruct.h"
@@ -85,6 +85,7 @@ void TRIDENTInitVideo(ScreenPtr pScreen)
* The following has been tested on:
*
* 9525 : flags: None
+ * Image985 : flags: None
* Cyber9397(DVD) : flags: VID_ZOOM_NOMINI
* CyberBlade/i7: flags: VID_ZOOM_INV | VID_ZOOM_MINI
* CyberBlade/i1: flags: VID_ZOOM_INV | VID_ZOOM_MINI
@@ -106,8 +107,10 @@ void TRIDENTInitVideo(ScreenPtr pScreen)
if (pTrident->Chipset == CYBER9397 || pTrident->Chipset == CYBER9397DVD)
pTrident->videoFlags = VID_ZOOM_NOMINI;
- if (pTrident->Chipset == CYBER9397DVD || pTrident->Chipset >= CYBER9525DVD)
- pTrident->videoFlags |= VID_DOUBLE_LINEBUFFER_FOR_WIDE_SRC;
+ if (pTrident->Chipset == CYBER9397DVD ||
+ pTrident->Chipset == CYBER9525DVD ||
+ pTrident->Chipset >= BLADE3D)
+ pTrident->videoFlags |= VID_DOUBLE_LINEBUFFER_FOR_WIDE_SRC;
newAdaptor = TRIDENTSetupImageVideo(pScreen);
TRIDENTInitOffscreenImages(pScreen);
@@ -139,7 +142,7 @@ void TRIDENTInitVideo(ScreenPtr pScreen)
if (pTrident->videoFlags)
xf86DrvMsgVerb(pScrn->scrnIndex,X_INFO,3,
- "Trident Video Flags: %s %s %s\n",
+ "Trident Video Flags: %s %s %s %s\n",
pTrident->videoFlags & VID_ZOOM_INV ? "VID_ZOOM_INV" : "",
pTrident->videoFlags & VID_ZOOM_MINI ? "VID_ZOOM_MINI" : "", pTrident->videoFlags & VID_OFF_SHIFT_4 ? "VID_OFF_SHIFT_4"
: "",
@@ -166,11 +169,7 @@ static XF86VideoFormatRec Formats[NUM_FORMATS] =
{8, PseudoColor}, {15, TrueColor}, {16, TrueColor}, {24, TrueColor}
};
-#ifdef TRIDENT_XV_GAMMA
-#define NUM_ATTRIBUTES 6
-#else
#define NUM_ATTRIBUTES 5
-#endif
static XF86AttributeRec Attributes[NUM_ATTRIBUTES] =
{
@@ -181,33 +180,10 @@ static XF86AttributeRec Attributes[NUM_ATTRIBUTES] =
{XvSettable | XvGettable, 0, 7, "XV_CONTRAST"}
};
-#if 0
-# define NUM_IMAGES 4
-#else
-# define NUM_IMAGES 4
-#endif
+#define NUM_IMAGES 3
static XF86ImageRec Images[NUM_IMAGES] =
{
-#if 0
- {
- 0x35315652,
- XvRGB,
- LSBFirst,
- {'R','V','1','5',
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},
- 16,
- XvPacked,
- 1,
- 15, 0x001F, 0x03E0, 0x7C00,
- 0, 0, 0,
- 0, 0, 0,
- 0, 0, 0,
- {'R','V','B',0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
- XvTopToBottom
- },
-#endif
{
0x36315652,
XvRGB,
@@ -384,7 +360,7 @@ TRIDENTSetupImageVideo(ScreenPtr pScreen)
pPriv->fixFrame = 100;
/* gotta uninit this someplace */
- REGION_INIT(pScreen, &pPriv->clip, NullBox, 0);
+ REGION_NULL(pScreen, &pPriv->clip);
pTrident->adaptor = adapt;
@@ -809,7 +785,7 @@ TRIDENTPutImage(
TRIDENTPtr pTrident = TRIDENTPTR(pScrn);
INT32 x1, x2, y1, y2;
unsigned char *dst_start;
- int pitch, new_size, offset, offset2 = 0, offset3 = 0;
+ int new_size, offset, offset2 = 0, offset3 = 0;
int srcPitch, srcPitch2 = 0, dstPitch;
int top, left, npixels, nlines, bpp;
BoxRec dstBox;
@@ -836,7 +812,6 @@ TRIDENTPutImage(
dstBox.y2 -= pScrn->frameY0;
bpp = pScrn->bitsPerPixel >> 3;
- pitch = bpp * pScrn->displayWidth;
dstPitch = ((width << 1) + 15) & ~15;
new_size = ((dstPitch * height) + bpp - 1) / bpp;
@@ -909,6 +884,8 @@ TRIDENTPutImage(
pPriv->videoStatus = CLIENT_VIDEO_ON;
+ pTrident->VideoTimerCallback = TRIDENTVideoTimerCallback;
+
return Success;
}
@@ -967,7 +944,7 @@ TRIDENTAllocateSurface(
XF86SurfacePtr surface
){
FBLinearPtr linear;
- int pitch, fbpitch, size, bpp;
+ int pitch, size, bpp;
OffscreenPrivPtr pPriv;
if((w > 1024) || (h > 1024))
@@ -976,7 +953,6 @@ TRIDENTAllocateSurface(
w = (w + 1) & ~1;
pitch = ((w << 1) + 15) & ~15;
bpp = pScrn->bitsPerPixel >> 3;
- fbpitch = bpp * pScrn->displayWidth;
size = ((pitch * h) + bpp - 1) / bpp;
if(!(linear = TRIDENTAllocateMemory(pScrn, NULL, size)))
@@ -1332,8 +1308,6 @@ WaitForVBlank(ScrnInfoPtr pScrn)
* full vblank has passed.
* - Alan.
*/
- while (!(hwp->readST01(hwp)&0x8)) {};
- while (hwp->readST01(hwp)&0x8) {};
- while (!(hwp->readST01(hwp)&0x8)) {};
- while (hwp->readST01(hwp)&0x8) {};
+ WAITFORVSYNC;
+ WAITFORVSYNC;
}