st/xorg: Use I8 format instead of A8 for depth 8 pixmaps.

Seems to work better for Composite acceleration.
This commit is contained in:
Michel Dänzer 2009-09-25 20:38:49 +02:00
parent 67fb13ba68
commit b97547027e
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ exa_get_pipe_format(int depth, enum pipe_format *format, int *bbp)
assert(*bbp == 16);
break;
case 8:
*format = PIPE_FORMAT_A8_UNORM;
*format = PIPE_FORMAT_I8_UNORM;
assert(*bbp == 8);
break;
case 4: