Displaying 3 results from an estimated 3 matches for "nouveau_exa_destroy_pixmap".
2010 May 13
1
xf86-video-nouveau-git and xorg-server-git
...' is deprecated (declared at
/usr/include/xorg/os.h:225)
nouveau_exa.c:331:2: warning: 'Xcalloc' is deprecated (declared at
/usr/include/xorg/os.h:225)
nouveau_exa.c:372:3: warning: '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)
(...)...
2009 Dec 11
2
[PATCH 1/2] exa: Pre-G80 tiling support.
...LED) {
+ int pitch_align =
+ pNv->NVArch >= 0x40 ? 512 : 256;
- *new_pitch = width * cpp;
+ *new_pitch = NOUVEAU_ALIGN(*new_pitch,
+ pitch_align);
+ tile_mode = *new_pitch;
+ }
+ }
} else {
*new_pitch = (width * bitsPerPixel + 7) / 8;
}
@@ -437,12 +445,13 @@ nouveau_exa_destroy_pixmap(ScreenPtr pScreen, void *priv)
}
bool
-nouveau_exa_pixmap_is_tiled(PixmapPtr ppix)
+nv50_style_tiled_pixmap(PixmapPtr ppix)
{
- if (!nouveau_pixmap_bo(ppix)->tile_flags)
- return false;
+ ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum];
+ NVPtr pNv = NVPTR(pScrn);
-...
2009 Feb 26
2
[PATCH 1/2] exa: turn WaitMarker into a NOP.
- map should handle this.
---
src/nouveau_exa.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/nouveau_exa.c b/src/nouveau_exa.c
index b656ca7..20ad380 100644
--- a/src/nouveau_exa.c
+++ b/src/nouveau_exa.c
@@ -259,7 +259,7 @@ nouveau_exa_mark_sync(ScreenPtr pScreen)
static void
nouveau_exa_wait_marker(ScreenPtr pScreen, int marker)
{
-