summaryrefslogtreecommitdiff
path: root/src/tests/packedpixels.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/packedpixels.c')
-rw-r--r--src/tests/packedpixels.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tests/packedpixels.c b/src/tests/packedpixels.c
index 4c95ca5f..33da6f5c 100644
--- a/src/tests/packedpixels.c
+++ b/src/tests/packedpixels.c
@@ -8,7 +8,7 @@
#include <stdlib.h>
#include <math.h>
#include <string.h>
-#include <glad/glad.h>
+#include "glad/gl.h"
#include "glut_wrap.h"
@@ -367,11 +367,12 @@ main(int argc, char *argv[])
glutInitWindowSize(700, 800);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
glutCreateWindow(argv[0]);
- gladLoadGL();
+ gladLoaderLoadGL();
glutReshapeFunc(Reshape);
glutKeyboardFunc(Key);
glutDisplayFunc(Draw);
Init();
glutMainLoop();
+ gladLoaderUnloadGL();
return 0;
}