diff options
author | Brian Paul <[email protected]> | 1999-12-15 13:02:09 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-12-15 13:02:09 +0000 |
commit | 381e5555a53a2178a83f579582ac735cdaf9aa78 (patch) | |
tree | 319f02d9a2d43844e08741f953c8a63fb83ce01f /progs/samples/logo.c | |
parent | 7e401c1546fb7a134b3a6058aef18b40b7917993 (diff) |
made a few globals static
Diffstat (limited to 'progs/samples/logo.c')
-rw-r--r-- | progs/samples/logo.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/progs/samples/logo.c b/progs/samples/logo.c index 8f7de45b000..cf0f90c531a 100644 --- a/progs/samples/logo.c +++ b/progs/samples/logo.c @@ -1,4 +1,4 @@ -/* $Id: logo.c,v 1.1 1999/08/19 00:55:41 jtg Exp $ */ +/* $Id: logo.c,v 1.2 1999/12/15 13:02:09 brianp Exp $ */ /* * Copyright (c) 1991, 1992, 1993 Silicon Graphics, Inc. @@ -108,16 +108,16 @@ GLubyte *image = checkImage; GLint imageHeight = CHECKIMAGEHEIGHT; GLint imageWidth = CHECKIMAGEWIDTH; -float decal[] = { +static float decal[] = { GL_DECAL, }; -float modulate[] = { +static float modulate[] = { GL_MODULATE, }; -float repeat[] = { +static float repeat[] = { GL_REPEAT, }; -float nearest[] = { +static float nearest[] = { GL_NEAREST, }; |