diff options
author | Vinson Lee <[email protected]> | 2009-12-14 18:11:57 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-12-14 18:11:57 -0800 |
commit | 0a8d508854c6dd354e611b046e375b8633059a40 (patch) | |
tree | d5b1c44d50f7e49eec30ad766e6dd7618cbf6bf3 /progs/trivial/tri-blend.c | |
parent | 6e5fe39f5051bb758b98ed4b9a2b9d550b588edf (diff) |
progs/trivial: Silence compiler warnings.
Diffstat (limited to 'progs/trivial/tri-blend.c')
-rw-r--r-- | progs/trivial/tri-blend.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/trivial/tri-blend.c b/progs/trivial/tri-blend.c index 58c451c9769..f41be89b097 100644 --- a/progs/trivial/tri-blend.c +++ b/progs/trivial/tri-blend.c @@ -81,7 +81,7 @@ static void drawRightTriangle(void) glDisable (GL_BLEND); } -void display(void) +static void display(void) { glClear(GL_COLOR_BUFFER_BIT); @@ -97,7 +97,7 @@ void display(void) glFlush(); } -void reshape(int w, int h) +static void reshape(int w, int h) { glViewport(0, 0, (GLsizei) w, (GLsizei) h); glMatrixMode(GL_PROJECTION); @@ -109,7 +109,7 @@ void reshape(int w, int h) } /* ARGSUSED1 */ -void keyboard(unsigned char key, int x, int y) +static void keyboard(unsigned char key, int x, int y) { switch (key) { case 't': |