mirror of https://github.com/mpv-player/mpv
10 lines
169 B
C
10 lines
169 B
C
|
#include <X11/Xlib.h>
|
||
|
#include <GL/glx.h>
|
||
|
#include <GL/gl.h>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
glXCreateContext(NULL, NULL, NULL, True);
|
||
|
glFinish();
|
||
|
return 0;
|
||
|
}
|