summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <anholt@FreeBSD.org>2006-02-07 04:39:59 +0000
committerEric Anholt <anholt@FreeBSD.org>2006-02-07 04:39:59 +0000
commit82b4245f296fee80cc65c9b839e49b264f896135 (patch)
tree542cf8a6e80e5d7906adb9793f3279c7e2a88086
parentfb18e7083d5fb8d8012718d904db616b0fee1acd (diff)
Fix a copy'n'paste-o in the EXA render implementation that resulted in
[ax]8b8g8r8 pict formats not being supported on r200, but no other issues.
-rw-r--r--ChangeLog7
-rw-r--r--src/radeon_exa_render.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 693d141..16f613f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-02-06 Eric Anholt <anholt@FreeBSD.org>
+
+ * src/radeon_exa_render.c:
+ Fix a copy'n'paste-o in the EXA render implementation that resulted in
+ [ax]8b8g8r8 pict formats not being supported on r200, but no other
+ issues.
+
2006-01-19 Daniel Stone <daniel@freedesktop.org>
* src/radeon_driver.c:
diff --git a/src/radeon_exa_render.c b/src/radeon_exa_render.c
index 3445e57..c4c4b25 100644
--- a/src/radeon_exa_render.c
+++ b/src/radeon_exa_render.c
@@ -116,8 +116,8 @@ static struct formatinfo R100TexFormats[] = {
static struct formatinfo R200TexFormats[] = {
{PICT_a8r8g8b8, 0, R200_TXFORMAT_ARGB8888 | R200_TXFORMAT_ALPHA_IN_MAP},
{PICT_x8r8g8b8, 0, R200_TXFORMAT_ARGB8888},
- {PICT_a8r8g8b8, 1, R200_TXFORMAT_RGBA8888 | R200_TXFORMAT_ALPHA_IN_MAP},
- {PICT_x8r8g8b8, 1, R200_TXFORMAT_RGBA8888},
+ {PICT_a8b8g8r8, 1, R200_TXFORMAT_RGBA8888 | R200_TXFORMAT_ALPHA_IN_MAP},
+ {PICT_x8b8g8r8, 1, R200_TXFORMAT_RGBA8888},
{PICT_r5g6b5, 0, R200_TXFORMAT_RGB565},
{PICT_a1r5g5b5, 0, R200_TXFORMAT_ARGB1555 | R200_TXFORMAT_ALPHA_IN_MAP},
{PICT_x1r5g5b5, 0, R200_TXFORMAT_ARGB1555},