From bea7ccaffdea920266d0e9df351a2e2bad92c8e3 Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 7 Mar 2013 19:42:41 -0800 Subject: [PATCH] vwebp: use magenta for 'i'nfo display replaces black Change-Id: I8ca52c187c7b4b890378dec2a526e51c7819f7e1 --- examples/vwebp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/vwebp.c b/examples/vwebp.c index 8ea105bb..4da2f3d5 100644 --- a/examples/vwebp.c +++ b/examples/vwebp.c @@ -153,12 +153,12 @@ static void HandleDisplay(void) { if (kParams.print_info) { char tmp[32]; - glColor4f(0.0, 0.0, 0.0, 1.0); + glColor4f(0.90, 0.0, 0.90, 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, 1.0); + glColor4f(0.90, 0.0, 0.90, 1.0); glRasterPos2f(-0.95f, 0.80f); PrintString(tmp); if (iter->x_offset != 0 || iter->y_offset != 0) {