Displaying 4 results from an estimated 4 matches for "offscreenbase".
2008 Dec 26
1
NV50: xv fullscreen issues
...[ws] Modules: flip_page
xine crashes in a similar way. mplayer (non GUI version) doesn't crash, but all I get is a black screen with "BadMatch" errors spamming the console.
The BadMatch is from nv50_xv.c:54
if (exaGetPixmapOffset(ppix) < pNv->EXADriverPtr->offScreenBase)
return FALSE;
commenting out those lines stops the players from crashing, but I still get just a black screen.
After having crashed gmplayer (with the code lines above re-enabled), I also notice that screen updates are a bit shaky - sometimes the screen isn't updated until I...
2008 Jan 30
3
[Bug 14305] New: X crash at start when virtual size exceeds the VRAM capacity
...t: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy: debian at oursours.net
QAContact: xorg-team at lists.x.org
X crash at start when virtual size exceeds the VRAM capacity
Quoting marcheu who sort it out:
<marcheu> (EE) EXA(0): ExaDriverRec::offScreenBase must be <=
ExaDriverRec::memorySize
<marcheu> bad bad bad bad
<marcheu> (--) NOUVEAU(0): VideoRAM: 16384 kBytes
<marcheu> 2624*1200*4=12MB
<marcheu> we only use half of VRAM for 2D, and 16/2MB < 12MB
<marcheu> so you don't have the room to create that buffe...
2008 Oct 30
27
[Bug 18300] New: NV11 Locks Up On Xorg Initialization
http://bugs.freedesktop.org/show_bug.cgi?id=18300
Summary: NV11 Locks Up On Xorg Initialization
Product: xorg
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy:
2009 Mar 08
4
[PATCH 1/5] nv50: implement wfb
...xmaps) {
- if (!nouveau_pixmap_bo(ppix)->tiled)
+ if (!nouveau_pixmap_bo(ppix))
+ return false;
+ if (nouveau_pixmap_bo(ppix)->tiled == 0)
return false;
+ return true;
} else
if (pNv->Architecture < NV_ARCH_50 ||
exaGetPixmapOffset(ppix) < pNv->EXADriverPtr->offScreenBase)
@@ -403,10 +409,12 @@ nouveau_exa_pixmap_is_tiled(PixmapPtr ppix)
static void *
nouveau_exa_pixmap_map(PixmapPtr ppix)
{
+ ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum];
+ NVPtr pNv = NVPTR(pScrn);
struct nouveau_bo *bo = nouveau_pixmap_bo(ppix);
unsigned delta = nouv...