diff options
author | Dave Airlie <airlied@redhat.com> | 2012-06-15 19:38:45 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-06-15 19:42:05 +0100 |
commit | cb97e75acab84b67b7b7358860788638efc9b344 (patch) | |
tree | 866dfa78736e791744d42a656c84ad6f556a2afc /src/radeon_driver.c | |
parent | 81593e7deb688fa3108a0589c1418459ec0df4de (diff) |
radeon: more unused stuff
Remove all CurrentLayout stuff.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/radeon_driver.c')
-rw-r--r-- | src/radeon_driver.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 28c1040e..3e39b4b5 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -172,12 +172,7 @@ Bool RADEONPreInitVisual(ScrnInfoPtr pScrn) info->pix24bpp = xf86GetBppFromDepth(pScrn, pScrn->depth); - info->CurrentLayout.bitsPerPixel = pScrn->bitsPerPixel; - info->CurrentLayout.depth = pScrn->depth; - info->CurrentLayout.pixel_bytes = pScrn->bitsPerPixel / 8; - info->CurrentLayout.pixel_code = (pScrn->bitsPerPixel != 16 - ? pScrn->bitsPerPixel - : pScrn->depth); + info->pixel_bytes = pScrn->bitsPerPixel / 8; if (info->pix24bpp == 24) { xf86DrvMsg(pScrn->scrnIndex, X_ERROR, @@ -188,8 +183,8 @@ Bool RADEONPreInitVisual(ScrnInfoPtr pScrn) xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Pixel depth = %d bits stored in %d byte%s (%d bpp pixmaps)\n", pScrn->depth, - info->CurrentLayout.pixel_bytes, - info->CurrentLayout.pixel_bytes > 1 ? "s" : "", + info->pixel_bytes, + info->pixel_bytes > 1 ? "s" : "", info->pix24bpp); if (!xf86SetDefaultVisual(pScrn, -1)) return FALSE; |