aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-09-04 12:18:56 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-09-04 12:18:56 +0000
commit6c1e994a08af75532f4db7861f7921b5f2032583 (patch)
tree0d0f8565836d8d2a200ee7f3b160f62360a4b004
parent49d079959cac6df46d3d66fd8391a7dc67b3d721 (diff)
Make the blue a bit brighter
git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@108 bf6ca9ba-c028-0410-8290-897cf20841d1
-rw-r--r--src/displaywindow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/displaywindow.c b/src/displaywindow.c
index 45dbc7f..9afa2ad 100644
--- a/src/displaywindow.c
+++ b/src/displaywindow.c
@@ -283,7 +283,7 @@ static gint displaywindow_gl_motion_notify(GtkWidget *widget, GdkEventMotion *ev
static void displaywindow_gl_create_list(ControlContext *ctx) {
- GLfloat blue[] = { 0.0, 0.0, 0.2, 1.0 };
+ GLfloat blue[] = { 0.0, 0.0, 0.5, 1.0 };
GLfloat blue_spec[] = { 0.0, 0.0, 1.0, 1.0 };
GLfloat red[] = { 1.0, 0.0, 0.0, 1.0 };
GLfloat yellow[] = { 1.0, 1.0, 0.0, 1.0 };
@@ -569,7 +569,7 @@ static gint displaywindow_gl_expose(GtkWidget *widget, GdkEventExpose *event, Co
GdkGLDrawable *gldrawable = gtk_widget_get_gl_drawable(widget);
float m[4][4];
GLfloat green[] = { 0.0, 1.0, 0.0, 1.0 };
- GLfloat blue[] = { 0.0, 0.0, 0.2, 1.0 };
+ GLfloat blue[] = { 0.0, 0.0, 0.5, 1.0 };
GLfloat blue_spec[] = { 0.0, 0.0, 1.0, 1.0 };
GLfloat gold[] = { 0.5, 0.5, 0.0, 1.0 };
GLfloat gold_spec[] = { 0.9, 0.9, 0.0, 1.0 };