summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-11-05 14:11:55 -0500
committerAlex Deucher <alexdeucher@gmail.com>2009-11-05 14:11:55 -0500
commit6e496f46fdc90d0a6cef41e9d45a6458aaed1eca (patch)
treef7f1f4306605ab290a3ffb5590b9e88394902724
parentb6ac42cce2156880ac18b32e15acbff40b2f53e9 (diff)
Revert "Fix warning about unused defined labels in radeon_exa_funcs.c."
This reverts commit b6ac42cce2156880ac18b32e15acbff40b2f53e9. This patch is very broken.
-rw-r--r--src/radeon_exa_funcs.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/src/radeon_exa_funcs.c b/src/radeon_exa_funcs.c
index 1f463d1..d5a3103 100644
--- a/src/radeon_exa_funcs.c
+++ b/src/radeon_exa_funcs.c
@@ -454,18 +454,16 @@ RADEONUploadToScreenCS(PixmapPtr pDst, int x, int y, int w, int h,
RINFO_FROM_SCREEN(pScreen);
struct radeon_exa_pixmap_priv *driver_priv;
struct radeon_bo *scratch;
+ unsigned char *dst;
unsigned size;
+ uint32_t datatype = 0;
uint32_t dst_domain;
+ uint32_t dst_pitch_offset;
unsigned bpp = pDst->drawable.bitsPerPixel;
uint32_t scratch_pitch = (w * bpp / 8 + 63) & ~63;
+ uint32_t swap = RADEON_HOST_DATA_SWAP_NONE;
Bool r;
-#if X_BYTE_ORDER == X_BIG_ENDIAN
- unsigned char *dst;
- uint32_t datatype = 0;
- uint32_t dst_pitch_offset;
- uint32_t swap = RADEON_HOST_DATA_SWAP_NONE;
int i;
-#endif
if (bpp < 8)
return FALSE;
@@ -514,7 +512,6 @@ RADEONUploadToScreenCS(PixmapPtr pDst, int x, int y, int w, int h,
goto out;
}
-#if X_BYTE_ORDER == X_BIG_ENDIAN
copy:
r = radeon_bo_map(scratch, 0);
if (r) {
@@ -541,7 +538,7 @@ copy:
dst_pitch_offset, 0, 0, x, y, w, h,
RADEON_GEM_DOMAIN_GTT, RADEON_GEM_DOMAIN_VRAM);
}
-#endif
+
out:
if (scratch != driver_priv->bo)
radeon_bo_unref(scratch);
@@ -561,9 +558,7 @@ RADEONDownloadFromScreenCS(PixmapPtr pSrc, int x, int y, int w,
uint32_t src_pitch_offset;
unsigned bpp = pSrc->drawable.bitsPerPixel;
uint32_t scratch_pitch = (w * bpp / 8 + 63) & ~63;
-#if X_BYTE_ORDER == X_BIG_ENDIAN
uint32_t swap = RADEON_HOST_DATA_SWAP_NONE;
-#endif
Bool r;
if (bpp < 8)
@@ -633,7 +628,6 @@ RADEONDownloadFromScreenCS(PixmapPtr pSrc, int x, int y, int w,
RADEON_GEM_DOMAIN_GTT);
FLUSH_RING();
-#if X_BYTE_ORDER == X_BIG_ENDIAN
copy:
r = radeon_bo_map(scratch, 0);
if (r) {
@@ -652,7 +646,6 @@ copy:
dst += dst_pitch;
}
radeon_bo_unmap(scratch);
-#endif
out:
if (scratch != driver_priv->bo)
radeon_bo_unref(scratch);