summaryrefslogtreecommitdiff
path: root/test/fractals.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/fractals.cxx')
-rw-r--r--test/fractals.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/fractals.cxx b/test/fractals.cxx
index ae9735a..a5b2784 100644
--- a/test/fractals.cxx
+++ b/test/fractals.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fractals.cxx 8864 2011-07-19 04:49:30Z greg.ercolano $"
+// "$Id: fractals.cxx 11096 2016-01-31 04:28:04Z AlbrechtS $"
//
// Fractal drawing demo for the Fast Light Tool Kit (FLTK).
//
@@ -7,7 +7,7 @@
// demonstrate how to add FLTK controls to a GLUT program. The GLUT
// code is unchanged except for the end (search for FLTK to find changes).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2016 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -25,7 +25,7 @@
#include <FL/Fl.H>
#include <FL/fl_message.H>
int main(int, char**) {
- fl_alert("This demo does not work without GL and GLU (%d)");
+ fl_alert("This demo does not work without GL and GLU");
return 1;
}
#else
@@ -768,6 +768,7 @@ void handlemenu(Fl_Widget*, void *value) {handlemenu(fl_intptr_t(value));}
int main(int argc, char** argv)
{
+ Fl::use_high_res_GL(1);
// glutInit(&argc, argv); // this line removed for FLTK
// create FLTK window:
@@ -826,5 +827,5 @@ int main(int argc, char** argv)
#endif
//
-// End of "$Id: fractals.cxx 8864 2011-07-19 04:49:30Z greg.ercolano $".
+// End of "$Id: fractals.cxx 11096 2016-01-31 04:28:04Z AlbrechtS $".
//