Displaying 3 results from an estimated 3 matches for "nvsetupblitvideo".
2010 May 13
1
xf86-video-nouveau-git and xorg-server-git
...ning: 'Xfree' is deprecated (declared at
/usr/include/xorg/os.h:234)
nouveau_exa.c: In function 'nouveau_exa_destroy_pixmap':
nouveau_exa.c:388:2: warning: 'Xfree' is deprecated (declared at
/usr/include/xorg/os.h:234)
CC nouveau_xv.lo
nouveau_xv.c: In function 'NVSetupBlitVideo':
nouveau_xv.c:1582:2: warning: 'Xcalloc' is deprecated (declared at
/usr/include/xorg/os.h:225)
(...)
--------------------------------------------------
Kredyty hipoteczne z dop?at?. Sprawd? koniecznie!
http://linkint.pl/f26ca
2007 May 30
0
[PATCH] added comments
...rnInfo, int id,
if (pPriv->grabbedByV4L)
return BadAlloc;
- if ((w > 2046) || (h > 2046))
+ if ((w > IMAGE_MAX_W) || (h > IMAGE_MAX_H))
return BadValue;
w = (w + 1) & ~1;
@@ -1210,6 +1499,12 @@ NVDisplaySurface(XF86SurfacePtr surface,
return Success;
}
+/**
+ * NVSetupBlitVideo
+ * this function does all the work setting up a blit port
+ *
+ * @return blit port
+ */
static XF86VideoAdaptorPtr
NVSetupBlitVideo (ScreenPtr pScreen)
{
@@ -1272,6 +1567,13 @@ NVSetupBlitVideo (ScreenPtr pScreen)
return adapt;
}
+/**
+ * NV10SetupOverlayVideo
+ * this function does all...
2007 Sep 03
4
Fixes and workarounds for regressions and issues in the randr-1.2 branch
Hi,
Please find attached the patches which I currently use on my desktop
machine for dual head with the randr branch to fix the issues which I found.
They may help others as well but may e.g. also disable the Xv blitter
which might be working for some (but didn't on my card) - more information
is found in the text comments in the patches.
I have to hurry so this is short, will be back.