summaryrefslogtreecommitdiff
path: root/src/mesa/main/texutil.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-03-30 18:37:32 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-03-30 18:37:32 +0000
commitaed8a96ef22f29b29315c14af6e2148bb9e2bbda (patch)
treeca5b7e148cd4769e35643560fc96f549214d1f2e /src/mesa/main/texutil.c
parent03b7aee4387aac9ad896f2b6d26ddbb16bdffcf9 (diff)
fixed typos in generate_lookup_tables()
Diffstat (limited to 'src/mesa/main/texutil.c')
-rw-r--r--src/mesa/main/texutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texutil.c b/src/mesa/main/texutil.c
index c3fca545f8..67805c8d71 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;
}
}