├── .gitattributes ├── .gitignore ├── indexbuffercompression.cpp ├── indexbuffercompression.h ├── indexbuffercompressionformat.h ├── indexbufferdecodetables.h ├── indexbufferdecompression.cpp ├── indexbufferdecompression.h ├── indexcompressionconstants.h ├── readbitstream.h ├── readme.md └── writebitstream.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/.gitignore -------------------------------------------------------------------------------- /indexbuffercompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/indexbuffercompression.cpp -------------------------------------------------------------------------------- /indexbuffercompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/indexbuffercompression.h -------------------------------------------------------------------------------- /indexbuffercompressionformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/indexbuffercompressionformat.h -------------------------------------------------------------------------------- /indexbufferdecodetables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/indexbufferdecodetables.h -------------------------------------------------------------------------------- /indexbufferdecompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/indexbufferdecompression.cpp -------------------------------------------------------------------------------- /indexbufferdecompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/indexbufferdecompression.h -------------------------------------------------------------------------------- /indexcompressionconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/indexcompressionconstants.h -------------------------------------------------------------------------------- /readbitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/readbitstream.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/readme.md -------------------------------------------------------------------------------- /writebitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConorStokes/IndexBufferCompression/HEAD/writebitstream.h --------------------------------------------------------------------------------