(svn r10142) -Fix r10132: do something useful with the alpha channel instead of ignoring it

This commit is contained in:
truelight
2007-06-13 16:04:35 +00:00
parent 5f1791bfb1
commit 4185c4afcd
2 changed files with 38 additions and 4 deletions

View File

@@ -419,6 +419,7 @@ const Sprite *GetGlyph(FontSize size, WChar key)
for (x = 0; x < slot->bitmap.width; x++) {
if (HASBIT(slot->bitmap.buffer[(x / 8) + y * slot->bitmap.pitch], 7 - (x % 8))) {
sprite.data[1 + x + (1 + y) * sprite.width].m = SHADOW_COLOUR;
sprite.data[1 + x + (1 + y) * sprite.width].a = 0xFF;
}
}
}
@@ -428,6 +429,7 @@ const Sprite *GetGlyph(FontSize size, WChar key)
for (x = 0; x < slot->bitmap.width; x++) {
if (HASBIT(slot->bitmap.buffer[(x / 8) + y * slot->bitmap.pitch], 7 - (x % 8))) {
sprite.data[x + y * sprite.width].m = FACE_COLOUR;
sprite.data[x + y * sprite.width].a = 0xFF;
}
}
}