diff options
author | Keith Whitwell <[email protected]> | 2009-03-24 16:35:29 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-03-24 16:35:29 +0000 |
commit | eb9801ccfbd6d808e4761d66202bc368b86679b6 (patch) | |
tree | a28d757e6015316801b8144b4671ccc84f2ce7ab /progs/trivial/tri-square.c | |
parent | cc8afbd3862fedfe42e51c3774960d1c7078ec53 (diff) |
progs/trivial: add fflushes for cygwin
Diffstat (limited to 'progs/trivial/tri-square.c')
-rw-r--r-- | progs/trivial/tri-square.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/progs/trivial/tri-square.c b/progs/trivial/tri-square.c index 9102888abd0..0b82a1dd8e3 100644 --- a/progs/trivial/tri-square.c +++ b/progs/trivial/tri-square.c @@ -39,6 +39,7 @@ static void Init(void) fprintf(stderr, "GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER)); fprintf(stderr, "GL_VERSION = %s\n", (char *) glGetString(GL_VERSION)); fprintf(stderr, "GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR)); + fflush(stderr); glClearColor(0.0, 0.0, 1.0, 0.0); } |