diff options
author | Dave Airlie <airlied@redhat.com> | 2009-11-20 12:15:02 +1000 |
---|---|---|
committer | Dave Airlie <airlied@itt42.(none)> | 2009-11-23 13:04:44 +1000 |
commit | e20af9c94982ec6487dae42c141d33cf6a7a2eb4 (patch) | |
tree | 6c933d03f4b0978751d5b6277f5ff3741f9035a3 /src/radeon_textured_video.c | |
parent | dd3eab848cf352bb96c3d01fe6028d8a4a8e451e (diff) |
radeon: avoid using hw pixmaps when we have little VRAM.
This patch returns NULL for pixmap creation when we are using
mixed pixmaps and the pixmap has a size.
The size check is necessary for the front buffer.
We add a flag to force pixmap creation for certain pixmaps
that need to be hw, like the DRI2 and Xv ones.
Idea from Michel and workarounds from Ben Skeggs.
v2: add Option "EXALowVRAM" to allow configuring this, value in MBs.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/radeon_textured_video.c')
-rw-r--r-- | src/radeon_textured_video.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/radeon_textured_video.c b/src/radeon_textured_video.c index 39c75749..7396f6f0 100644 --- a/src/radeon_textured_video.c +++ b/src/radeon_textured_video.c @@ -349,7 +349,9 @@ RADEONPutImageTextured(ScrnInfoPtr pScrn, #ifdef USE_EXA if (info->useEXA) { /* Force the pixmap into framebuffer so we can draw to it. */ + info->exa_force_create = TRUE; exaMoveInPixmap(pPriv->pPixmap); + info->exa_force_create = FALSE; } #endif |