blob: 833a9c7b89f825b16b4e9845470cdbd3c20c8663 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# opentest
Sample OpenGL window example using GLFW.
Compile on macOS:
```
clang main.c -o ogl_example -lglfw -framework OpenGL
```
Run:
```
./ogl_example
```
|