summaryrefslogtreecommitdiff
path: root/src/i830_reg.h
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@nietzche.virtuousgeek.org>2007-07-03 14:20:34 -0700
committerJesse Barnes <jbarnes@nietzche.virtuousgeek.org>2007-07-03 14:20:34 -0700
commit60ee7b6a91b2b8c447130c60cd8b19eb68119777 (patch)
tree7d9d450b87731f2414a42345853bd93b9e8cd3be /src/i830_reg.h
parentf02036aedcd7866c567a6adc070eda3dad872105 (diff)
Fixup line length buffer padding, add kludge for front buffer tile
pitch.
Diffstat (limited to 'src/i830_reg.h')
-rw-r--r--src/i830_reg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/i830_reg.h b/src/i830_reg.h
index b5fa1b98..d1670c3e 100644
--- a/src/i830_reg.h
+++ b/src/i830_reg.h
@@ -50,7 +50,8 @@
#define FBC_CTL_PIPEA (0<<0)
#define FBC_CTL_PIPEB (1<<0)
-#define FBC_COMPRESSED_LINES (1536+32)
+#define FBC_LL_SIZE (1536)
+#define FBC_LL_PAD (32)
#define I830_SET_FIELD( var, mask, value ) (var &= ~(mask), var |= value)