diff options
Diffstat (limited to 'src/mesa/main/texutil.c')
-rw-r--r-- | src/mesa/main/texutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texutil.c b/src/mesa/main/texutil.c index c3fca545f85..67805c8d71b 100644 --- a/src/mesa/main/texutil.c +++ b/src/mesa/main/texutil.c @@ -1281,7 +1281,7 @@ generate_lookup_tables(void) A4R4G4B4toRed[i] = r; A4R4G4B4toGreen[i] = g; A4R4G4B4toBlue[i] = b; - A4R4G4B4toAlpha[i] = b; + A4R4G4B4toAlpha[i] = a; } for (i = 0; i <= 0xffff; i++) { @@ -1296,7 +1296,7 @@ generate_lookup_tables(void) A1R5G5B5toRed[i] = r; A1R5G5B5toGreen[i] = g; A1R5G5B5toBlue[i] = b; - A1R5G5B5toAlpha[i] = b; + A1R5G5B5toAlpha[i] = a; } } |