summaryrefslogtreecommitdiff
path: root/progs/trivial/line.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-06-18 06:57:36 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-06-18 06:57:36 -0600
commit9ec2e162235920e6430914b73ff6f391a73b6a3a (patch)
treeb27ba81dcb859899fc58d07da4cb76a565e214c4 /progs/trivial/line.c
parent97fc7685742bfd60d36001ab832f14a003152bae (diff)
change clear color
Diffstat (limited to 'progs/trivial/line.c')
-rw-r--r--progs/trivial/line.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/trivial/line.c b/progs/trivial/line.c
index ff18f07ae4..93f10b897b 100644
--- a/progs/trivial/line.c
+++ b/progs/trivial/line.c
@@ -40,7 +40,7 @@ static void Init(void)
fprintf(stderr, "GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
fprintf(stderr, "GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
- glClearColor(0.0, 0.0, 1.0, 0.0);
+ glClearColor(0.3, 0.3, 0.3, 0.0);
}
static void Reshape(int width, int height)