diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-08-05 17:26:28 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-08-05 17:36:36 -0400 |
commit | b5bfdbd70d9671250957ccd41dfc8818850d257e (patch) | |
tree | 315fb46fde7773a628ad0b301a27278b48ff65a8 /src/radeon_dri2.c | |
parent | a3c59c6f6be7067421e348142da0ca13428dcd57 (diff) |
r6xx/r7xx: add support for tiling with kms (v3)
Requires radeon drm 2.6.0 and updated mesa.
v2: - fix lockup due to not emiting DB_DEPTH_INFO
https://bugs.freedesktop.org/show_bug.cgi?id=28342
- fix drm minor version to deal with evergreen accel
v3: rebase on current ddx git
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Diffstat (limited to 'src/radeon_dri2.c')
-rw-r--r-- | src/radeon_dri2.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/radeon_dri2.c b/src/radeon_dri2.c index a0ed0857..9697bbc8 100644 --- a/src/radeon_dri2.c +++ b/src/radeon_dri2.c @@ -101,7 +101,10 @@ radeon_dri2_create_buffers(DrawablePtr drawable, switch(attachments[i]) { case DRI2BufferDepth: case DRI2BufferDepthStencil: - flags = RADEON_CREATE_PIXMAP_TILING_MACRO | RADEON_CREATE_PIXMAP_TILING_MICRO; + if (info->ChipFamily >= CHIP_FAMILY_R600) + flags = RADEON_CREATE_PIXMAP_TILING_MACRO; + else + flags = RADEON_CREATE_PIXMAP_TILING_MACRO | RADEON_CREATE_PIXMAP_TILING_MICRO; break; case DRI2BufferBackLeft: case DRI2BufferBackRight: @@ -183,7 +186,10 @@ radeon_dri2_create_buffer(DrawablePtr drawable, switch(attachment) { case DRI2BufferDepth: case DRI2BufferDepthStencil: - flags = RADEON_CREATE_PIXMAP_TILING_MACRO | RADEON_CREATE_PIXMAP_TILING_MICRO; + if (info->ChipFamily >= CHIP_FAMILY_R600) + flags = RADEON_CREATE_PIXMAP_TILING_MACRO; + else + flags = RADEON_CREATE_PIXMAP_TILING_MACRO | RADEON_CREATE_PIXMAP_TILING_MICRO; break; case DRI2BufferBackLeft: case DRI2BufferBackRight: |