diff options
author | Dave Airlie <airlied@redhat.com> | 2011-12-06 13:42:49 +0000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-12-06 13:42:49 +0000 |
commit | ba46c7b0cf72d157748981eb3224d5eefb6200aa (patch) | |
tree | d5f39ece61a65148218a5d6c3ed820f443c2c1f8 /src/radeon_exa.c | |
parent | 98b2d5fe1722a43c4bbe7711ed7180a3fb65305f (diff) |
radeon: refine always tiled depth check
So it appears the M7 family always tiles its depth buffer also.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/radeon_exa.c')
-rw-r--r-- | src/radeon_exa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_exa.c b/src/radeon_exa.c index 95646ab1..554af363 100644 --- a/src/radeon_exa.c +++ b/src/radeon_exa.c @@ -473,7 +473,7 @@ void *RADEONEXACreatePixmap2(ScreenPtr pScreen, int width, int height, if (usage_hint & RADEON_CREATE_PIXMAP_TILING_MICRO) tiling |= RADEON_TILING_MICRO; } - if ((usage_hint & RADEON_CREATE_PIXMAP_DEPTH) && IS_R200_3D) + if (usage_hint & RADEON_CREATE_PIXMAP_DEPTH) tiling |= RADEON_TILING_MACRO | RADEON_TILING_MICRO; } |