Repeat-key handling for Win32
[freeglut] / src / freeglut_main.c
2004-03-15 Nigel StewartRepeat-key handling for Win32
2004-03-14 Nigel StewartResolution of X11 key-repeat handling
2004-03-14 Nigel StewartStripped out tabs and end-of-line whitespace
2004-03-08 Nigel StewartResolved bug #869765 glutIgnoreKeyRepeat() Fix (Win32)
2004-03-08 Nigel StewartInclude freeglut header via <GL/freeglut.h> rather...
2004-02-14 Richard RauchFor some reason, the X "expose" event handler was ...
2004-02-01 Richard RauchClose a bug whereby events can be delayed arbitrarily...
2004-01-16 Richard RauchAmmended a comment on fgCheckJoystickCallback().
2004-01-16 Richard RauchMinor style normalizations to minimize the diffs betwee...
2004-01-16 Richard RauchSome changes from John.
2004-01-05 Nigel StewartWin32 glutIconifyWindow() patch contributed by John...
2003-12-30 Richard RauchSplit a few overlong lines.
2003-12-30 Richard RauchHm... I thought that I committed this last night....
2003-12-30 Nigel StewartTidy nested if/else to suppress gcc -Wall -pedantic...
2003-12-23 Richard RauchMoved the window-resize code so that it happens wheneve...
2003-12-22 Richard RauchSeveral test-on-assignment cases have been converted...
2003-12-11 Richard RauchStripped out TABs that got reintroduced.
2003-12-11 J.C. JonesNigel Stewart's Win32 window-sizing fix for game mode
2003-12-10 Richard RauchCommit of John's change to stop an infinite-loop condit...
2003-12-03 Richard RauchTouched up several comments, pointing up things that...
2003-12-03 Richard RauchHrm. I misunderstood the purpose of {window->State...
2003-12-02 Richard RauchChanged Create/ConfigureNotify handling in UNIX_X11:
2003-12-02 Richard RauchAdded an "XXX" earmark for post-release contemplation...
2003-12-02 Richard RauchEnsure that the time-out for sleeping is never negative.
2003-12-02 Richard RauchFixed a bug for UNIX_X11 where window reshape events...
2003-11-28 Christopher John... Timer optimizations.
2003-11-27 Christopher John... Window close fix.
2003-11-25 Richard RauchJohn reported, and fixed, a problem that recent changes...
2003-11-25 Richard RauchMore work from John (sorry for procrastinating):
2003-11-25 Richard RauchChange from John (I removed a couple of spaces from...
2003-11-21 Richard RauchNumerous style normalizations from John:
2003-11-21 Richard RauchAll changes are from John, except for:
2003-11-18 Christopher John... Lots of stuff that John F. Fay pointed out.
2003-11-17 Christopher John... Fix spelling mistake in a variable name.
2003-11-16 Christopher John... Made Modifers variable global as per glut classic.
2003-11-15 Christopher John... Removed the state variable BuildingAMenu.
2003-11-15 Christopher John... Replace TRUE with GL_TRUE and FALSE with GL_FALSE where...
2003-11-15 Richard RauchNormalized the spacing around symbols, for the most...
2003-11-15 Christopher John... Added a call to fgDeinitialize() before the call to...
2003-11-15 Christopher John... Added a new state variable "Initalized".
2003-11-10 Richard RauchJohn's fix for the minimize/close/maximize controls...
2003-11-07 Richard RauchFrom John:
2003-11-07 Richard RauchStripped out the now truly extraneous {braces} in such...
2003-11-07 Richard RauchPure code janitoring: Shuffled the order of some of...
2003-11-07 Richard RauchCombined EnterNotify and LeaveNotify event processing...
2003-11-07 Richard RauchAdded ReparentNotify case to UNIX_X11 event loop, to...
2003-11-07 Richard RauchGrr. Forgot to enable the "freeglut" C programming...
2003-11-07 Richard RauchMinor corrections to the UNIX_X11 mouse-wheel support...
2003-11-06 Richard RauchOoops. I screwed up on part of John's fixes. Sorry.
2003-11-06 Richard RauchCleanup pass after committing callback conversion ...
2003-11-06 Richard RauchConverted the "Callbacks" structure (with named members...
2003-11-06 Richard RauchFrom John, a couple of lines needed to be changed to...
2003-11-04 Richard RauchSome changes, mostly from John. Mostly style changes.
2003-11-04 Richard RauchGot rid of the G_LOG_DOMAIN junk, per discussion on...
2003-11-04 Richard RauchMissed a block where one level was 2-space indented.
2003-11-03 Richard Rauch * Indentation issues.
2003-11-03 Richard RauchHeh.
2003-11-03 Richard RauchExtracted some common code to a subroutine, in glutMain...
2003-11-03 Richard RauchCaught a few more little style issues.
2003-11-03 Richard RauchAdded a "case" for an X event that we turn on but do...
2003-11-03 Richard Rauch * Fixed a bug in the X11 handling of scrollwheel/mouse...
2003-10-31 Richard RauchEn masse removal of most (I think) of the remaining...
2003-10-30 Richard RauchForgot to set {direction} explicitly to +/- 1 for freeg...
2003-10-30 Richard RauchMinor fix to allow for multiple ticks to be received...
2003-10-30 Richard RauchGrrr. My attempt to commit got aborted, and the commit...
2003-10-29 Richard Rauch * Fixed a bug that I introduced in fgWarning()/fgError...
2003-10-28 Richard RauchCommit, mostly of work from John:
2003-10-27 Richard RauchCleaned up glutMainLoop() a bit:
2003-10-27 Richard RauchPartially (re-?)unified some of the glutMainLoopEvent...
2003-10-26 Richard RauchMoved the idle callback out of glutMainLoopEvent()...
2003-10-26 Richard RauchSuperficial cleanup of the code. Mostly taking lines...
2003-10-26 Richard RauchFixed the buglet about failing to report the program...
2003-10-08 Richard RauchChanged CreateNotify (in X11 ONLY) to act like a Config...
2003-10-08 Richard RauchFixed a bug in the menu callback behavior. Menus were...
2003-10-04 J.C. JonesTweaking for menu behavior in Linux regarding mouse...
2003-10-01 Richard RauchAdded support for more arbitrary number of mouse button...
2003-09-24 Richard RauchCorrected a bug w.r.t. display and joystick events...
2003-09-23 Richard RauchFixed:
2003-09-22 Richard RauchMoved the #include/#ifdef/#define stuff up to the top.
2003-09-20 J.C. JonesRichard Rauch's patch to ensure that freeglut does...
2003-09-13 J.C. JonesNigel Stewart's joystick fix (for hopefully all platfor...
2003-09-10 J.C. JonesRe-add catches for the case in which a menu callback...
2003-09-09 Christopher John... More to fix a deinitialization related crash.
2003-09-08 J.C. JonesMenus should deallocate better now - John Fay
2003-08-29 J.C. JonesThese change a bunch of assignments to calls to set...
2003-08-29 J.C. JonesAnother typecast bugfix from John Fay
2003-08-28 J.C. JonesCasting changes, John Fay
2003-08-27 J.C. JonesMajor overhaul to the menu system, by John Fay
2003-08-05 Eric Sandallsrc/freeglut_main.c:816 and :1571, set the current...
2003-08-02 J.C. JonesMajor menu changes (they appear in their own window...
2003-07-07 Christopher John... glutMainLoopEvent() was not closing windows properly.
2003-07-02 Christopher John... It was crashing on and event for a unknown window.
2003-06-27 Brian PaulXF86 game mode fixes, context sharing option. (John...
2003-06-23 Eric SandallChanged all references to the 'freeglut-1.3' directory...