├── .gitignore ├── Makefile ├── README.md ├── hello.c ├── hello.h ├── images ├── 01-qwiki-reference.jpg └── hello1.tga ├── noop.f.glsl ├── noop.v.glsl ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/README.md -------------------------------------------------------------------------------- /hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/hello.c -------------------------------------------------------------------------------- /hello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/hello.h -------------------------------------------------------------------------------- /images/01-qwiki-reference.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/images/01-qwiki-reference.jpg -------------------------------------------------------------------------------- /images/hello1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/images/hello1.tga -------------------------------------------------------------------------------- /noop.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/noop.f.glsl -------------------------------------------------------------------------------- /noop.v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/noop.v.glsl -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc/opengl-to-video-sample/HEAD/util.h --------------------------------------------------------------------------------