summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/gl_x11.c
blob: 8f6c950f47af6643dc553f71318314ee246c20ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <X11/Xlib.h>
#include <GL/glx.h>
#include <GL/gl.h>
#include <stddef.h>

int main(int argc, char *argv[]) {
  glXCreateContext(NULL, NULL, NULL, True);
  glXQueryExtensionsString(NULL, 0);
  glXGetProcAddressARB("");
  glFinish();
  return 0;
}