File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 49
49
50
50
//OpenGL
51
51
#pragma comment(lib, "opengl32")
52
- #pragma comment(lib, "glu32")
53
52
#include <gl/gl.h>
54
- #include <gl/glu.h>
55
53
56
54
//-- Not currently used:
57
55
//#include <windowsx.h>
@@ -544,7 +542,7 @@ static REBINT Check_Modifiers(REBINT flags)
544
542
glEnd ();
545
543
glFlush ();
546
544
547
- wglSwapBuffers (hdc );
545
+ SwapBuffers (hdc );
548
546
// wglMakeCurrent(hdc, 0);
549
547
EndPaint (hwnd , & ps );
550
548
return FALSE;
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ linker-flags: [
74
74
LLOG: "-llog" ; on Android, link with liblog.so
75
75
ARC: "-arch i386" ; x86 32 bit architecture (OSX)
76
76
M32: "-m32" ; use 32-bit memory model (Linux x64)
77
- W32: "-lwsock32 -lcomdlg32 -lgdi32 -lwinmm -lComctl32 -lUxTheme"
77
+ W32: "-lwsock32 -lcomdlg32 -lgdi32 -lwinmm -lComctl32 -lUxTheme -lopengl32 "
78
78
WIN: "-mwindows" ; build as Windows GUI binary
79
79
CON: "-mconsole" ; build as Windows Console binary
80
80
S4M: "-Wl,--stack=4194300"
You can’t perform that action at this time.
0 commit comments