mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
i915g: When emulating LUMINANCE8 and INTENSITY8 texutres, route alpha properly.
That fixes some formats in fbo-alphatest-formats.
This commit is contained in:
parent
6f62a25448
commit
77896b256a
1 changed files with 2 additions and 2 deletions
|
|
@ -349,8 +349,8 @@ static const struct
|
|||
uint hw_swizzle;
|
||||
} fixup_formats[] = {
|
||||
{ PIPE_FORMAT_R8G8B8A8_UNORM, 0x21030000 /* BGRA */},
|
||||
{ PIPE_FORMAT_L8_UNORM, 0x00000000 /* RRRR */},
|
||||
{ PIPE_FORMAT_I8_UNORM, 0x00000000 /* RRRR */},
|
||||
{ PIPE_FORMAT_L8_UNORM, 0x00030000 /* RRRR */},
|
||||
{ PIPE_FORMAT_I8_UNORM, 0x00030000 /* RRRR */},
|
||||
{ PIPE_FORMAT_A8_UNORM, 0x33330000 /* AAAA */},
|
||||
{ PIPE_FORMAT_NONE, 0x00000000},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue