mirror of
https://github.com/fltk/fltk.git
synced 2026-05-30 04:55:29 +08:00
memmove() needs <string.h>...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3062 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// "$Id: Fl_Gl_Choice.cxx,v 1.5.2.7.2.14 2003/07/17 05:52:47 matthiaswm Exp $"
|
// "$Id: Fl_Gl_Choice.cxx,v 1.5.2.7.2.15 2003/07/23 14:38:00 easysw Exp $"
|
||||||
//
|
//
|
||||||
// OpenGL visual selection code for the Fast Light Tool Kit (FLTK).
|
// OpenGL visual selection code for the Fast Light Tool Kit (FLTK).
|
||||||
//
|
//
|
||||||
@@ -30,6 +30,7 @@
|
|||||||
# include <FL/x.H>
|
# include <FL/x.H>
|
||||||
# include <stdlib.h>
|
# include <stdlib.h>
|
||||||
# include "Fl_Gl_Choice.H"
|
# include "Fl_Gl_Choice.H"
|
||||||
|
# include "flstring.h"
|
||||||
|
|
||||||
# ifdef __APPLE__
|
# ifdef __APPLE__
|
||||||
# include <FL/Fl_Window.H>
|
# include <FL/Fl_Window.H>
|
||||||
@@ -84,7 +85,7 @@ Fl_Gl_Choice *Fl_Gl_Choice::find(int m, const int *alistp) {
|
|||||||
if (m & FL_STENCIL) {
|
if (m & FL_STENCIL) {
|
||||||
list[n++] = AGL_STENCIL_SIZE; list[n++] = 1;
|
list[n++] = AGL_STENCIL_SIZE; list[n++] = 1;
|
||||||
}
|
}
|
||||||
# ifdef AGL_STEREO /* is there such a thing as AGL_STEREO? */
|
# ifdef AGL_STEREO
|
||||||
if (m & FL_STEREO) {
|
if (m & FL_STEREO) {
|
||||||
list[n++] = AGL_STEREO;
|
list[n++] = AGL_STEREO;
|
||||||
}
|
}
|
||||||
@@ -342,8 +343,9 @@ void fl_delete_gl_context(GLContext context) {
|
|||||||
del_context(context);
|
del_context(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif // HAVE_GL
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Gl_Choice.cxx,v 1.5.2.7.2.14 2003/07/17 05:52:47 matthiaswm Exp $".
|
// End of "$Id: Fl_Gl_Choice.cxx,v 1.5.2.7.2.15 2003/07/23 14:38:00 easysw Exp $".
|
||||||
//
|
//
|
||||||
|
|||||||
Reference in New Issue
Block a user