diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2006-08-17 09:56:59 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2006-08-17 09:56:59 +0000 |
| commit | c8288bd7b45136cc8b11aeed5056f15999ad5973 (patch) | |
| tree | c54f12228cdb22dc8d2432d649a709a31640e63f /src/glut_compatability.cxx | |
| parent | 51d67574ecae4a7e898a854b23b79be59197cc4e (diff) | |
Added some GLUT4 functions (STR #1370)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5323 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/glut_compatability.cxx')
| -rw-r--r-- | src/glut_compatability.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/glut_compatability.cxx b/src/glut_compatability.cxx index 71aeb73ba..b2acfdec4 100644 --- a/src/glut_compatability.cxx +++ b/src/glut_compatability.cxx @@ -257,6 +257,10 @@ void glutDestroyWindow(int win) { delete windows[win]; } +void glutPostWindowRedisplay(int win) { + windows[win]->redraw(); +} + void glutSetWindow(int win) { windows[win]->make_current(); } |
