gallium/hud: fix new gcc6 warnings
authorRob Clark <robdclark@gmail.com>
Tue, 16 Feb 2016 17:50:27 +0000 (12:50 -0500)
committerRob Clark <robclark@freedesktop.org>
Thu, 18 Feb 2016 22:10:55 +0000 (17:10 -0500)
commitbba836ea6a9674ec3459fb66a540ac697c827031
tree9b20b8b6bf3ad68b6bb1c94b2fcdf67fd808d25e
parent7d5372bfe84ec36f0aee93b46cb4c23f4c8f9e0f
gallium/hud: fix new gcc6 warnings

src/gallium/auxiliary/hud/font.c:234:22: warning: ‘Fixed8x13_Character_159’ defined but not used [-Wunused-const-variable]
 static const GLubyte Fixed8x13_Character_159[] = {  9,  0,  0,  0,  0, 0,  0,170,  0,  0,  0,130,  0,  0,  0,130,  0,  0,  0,130,  0,  0, 0,170,  0,  0,  0,  0,  0};
                      ^~~~~~~~~~~~~~~~~~~~~~~
.... many more..

These are simply unused, just #if 0 them out for now, in case someone
wants to use them in the future.

Signed-off-by: Rob Clark <robdclark@gmail.com>
src/gallium/auxiliary/hud/font.c