├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG ├── CODE_OF_CONDUCT ├── CONTRIBUTING ├── LICENSE.md ├── README.md ├── Rybfile ├── VERSION ├── appveyor.yml ├── example.c ├── include ├── wtk.h └── wtk │ ├── app.h │ ├── canvas.h │ ├── color.h │ ├── config.h │ ├── draw.h │ ├── foundation.h │ ├── foundation │ ├── assert.h │ ├── memory.h │ ├── support.h │ ├── types.h │ └── utilities.h │ ├── frame.h │ ├── gl.h │ ├── handle.h │ ├── linkage.h │ ├── render.h │ ├── wgl.h │ └── window.h ├── src ├── wtk.c └── wtk │ ├── app.c │ ├── canvas.c │ ├── foundation │ ├── assert.c │ └── memory.c │ ├── gl.c │ ├── render.c │ ├── wgl.c │ └── window.c └── wtk.sublime-project /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/README.md -------------------------------------------------------------------------------- /Rybfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/Rybfile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.0 2 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/example.c -------------------------------------------------------------------------------- /include/wtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk.h -------------------------------------------------------------------------------- /include/wtk/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/app.h -------------------------------------------------------------------------------- /include/wtk/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/canvas.h -------------------------------------------------------------------------------- /include/wtk/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/color.h -------------------------------------------------------------------------------- /include/wtk/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/config.h -------------------------------------------------------------------------------- /include/wtk/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/draw.h -------------------------------------------------------------------------------- /include/wtk/foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/foundation.h -------------------------------------------------------------------------------- /include/wtk/foundation/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/foundation/assert.h -------------------------------------------------------------------------------- /include/wtk/foundation/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/foundation/memory.h -------------------------------------------------------------------------------- /include/wtk/foundation/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/foundation/support.h -------------------------------------------------------------------------------- /include/wtk/foundation/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/foundation/types.h -------------------------------------------------------------------------------- /include/wtk/foundation/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/foundation/utilities.h -------------------------------------------------------------------------------- /include/wtk/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/frame.h -------------------------------------------------------------------------------- /include/wtk/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/gl.h -------------------------------------------------------------------------------- /include/wtk/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/handle.h -------------------------------------------------------------------------------- /include/wtk/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/linkage.h -------------------------------------------------------------------------------- /include/wtk/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/render.h -------------------------------------------------------------------------------- /include/wtk/wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/wgl.h -------------------------------------------------------------------------------- /include/wtk/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/include/wtk/window.h -------------------------------------------------------------------------------- /src/wtk.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wtk/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/src/wtk/app.c -------------------------------------------------------------------------------- /src/wtk/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/src/wtk/canvas.c -------------------------------------------------------------------------------- /src/wtk/foundation/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/src/wtk/foundation/assert.c -------------------------------------------------------------------------------- /src/wtk/foundation/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/src/wtk/foundation/memory.c -------------------------------------------------------------------------------- /src/wtk/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/src/wtk/gl.c -------------------------------------------------------------------------------- /src/wtk/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/src/wtk/render.c -------------------------------------------------------------------------------- /src/wtk/wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/src/wtk/wgl.c -------------------------------------------------------------------------------- /src/wtk/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/src/wtk/window.c -------------------------------------------------------------------------------- /wtk.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamicomet/wtk/HEAD/wtk.sublime-project --------------------------------------------------------------------------------