There should be no changes to code functionality, though a fair bit of
authorRichard Rauch <rkr@olib.org>
Fri, 31 Oct 2003 03:37:27 +0000 (03:37 +0000)
committerRichard Rauch <rkr@olib.org>
Fri, 31 Oct 2003 03:37:27 +0000 (03:37 +0000)
commit2fdc022726e934ebfb5c09cf4c40be25738f70c1
treee3bd2fdf1d535743d72d22ed1de4f481629de006
parent8997e09b1ce75c5d05405ed0c51e32436cac45ed
There should be no changes to code functionality, though a fair bit of
little changes to the code appearance.

 * Fit the comments at the start of the file to fit 80 columns.
 * Noted an unusual feature of the ATTRIB() macro.
 * Added ATTRIB_VAL() macro which is really just two ATTRIB()s.
   This lets us put things like {ATTRIB (GLX_RED_SIZE); ATTRIB (1);}
   on one statement: {ATTRIB_VAL (GLX_RED_SIZE, 1);}.
   I did this to preserve some of the layout of information while also
   avoiding the nasty semi-visible ";" in the middle of a line of code.
   And by putting the {braces} in the macro definition, I was able to
   visually clean code of the form:
       if (condition)
       {
           ATTRIB( X ); ATTRIB( 1 );
       }
   ...rewriting as:
       if (condition)
           ATTRIB_VAL( X, 1 );
 * Eliminated a bunch of say-nothing-new comments in fgChooseVisual().
 * Combined some semi-useful comments into a block comment summarizing
   a loop.

git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@272 7f0cb862-5218-0410-a997-914c9d46530a
src/freeglut_window.c