mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 13:48:21 +01:00
vwebp: fix info display
change alpha intensity to 1 from 0; broken since alpha blending was enabled. Change-Id: Ic8bb73b62e602ae56e08e9d5a77fdc6aa76b54c5
This commit is contained in:
parent
7e622984bb
commit
b35c07d9a7
@ -127,12 +127,12 @@ static void HandleDisplay(void) {
|
||||
if (kParams.print_info) {
|
||||
char tmp[32];
|
||||
|
||||
glColor4f(0.0, 0.0, 0.0, 0.0);
|
||||
glColor4f(0.0, 0.0, 0.0, 1.0);
|
||||
glRasterPos2f(-0.95f, 0.90f);
|
||||
PrintString(kParams.file_name);
|
||||
|
||||
snprintf(tmp, sizeof(tmp), "Dimension:%d x %d", pic->width, pic->height);
|
||||
glColor4f(0.0, 0.0, 0.0, 0.0);
|
||||
glColor4f(0.0, 0.0, 0.0, 1.0);
|
||||
glRasterPos2f(-0.95f, 0.80f);
|
||||
PrintString(tmp);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user