summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/gl_x11.c
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/fragments/gl_x11.c')
-rw-r--r--waftools/fragments/gl_x11.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/waftools/fragments/gl_x11.c b/waftools/fragments/gl_x11.c
deleted file mode 100644
index 7d879b6c0d..0000000000
--- a/waftools/fragments/gl_x11.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <X11/Xlib.h>
-#include <GL/glx.h>
-#include <stddef.h>
-
-#ifndef GL_VERSION_2_0
-#error "At least GL 2.0 headers needed."
-#endif
-
-int main(int argc, char *argv[]) {
- glXCreateContext(NULL, NULL, NULL, True);
- glXQueryExtensionsString(NULL, 0);
- glXGetProcAddressARB("");
- glXGetCurrentDisplay();
- return 0;
-}