summaryrefslogtreecommitdiff
path: root/src/demos/pointblast.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/pointblast.c')
-rw-r--r--src/demos/pointblast.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demos/pointblast.c b/src/demos/pointblast.c
index 1c3c480d..505a3fed 100644
--- a/src/demos/pointblast.c
+++ b/src/demos/pointblast.c
@@ -18,7 +18,7 @@
#ifdef _WIN32
#include <windows.h>
#endif
-#include <GL/glew.h>
+#include <glad/glad.h>
#include "glut_wrap.h"
/* Some <math.h> files do not define M_PI... */
@@ -444,7 +444,7 @@ main(int argc, char **argv)
}
glutCreateWindow("point burst");
- glewInit();
+ gladLoadGL();
glutDisplayFunc(redraw);
glutMouseFunc(mouse);
glutMotionFunc(mouseMotion);