├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── nimwebp.nimble ├── src └── nimwebp │ ├── decoder.nim │ ├── encoder.nim │ └── private │ ├── decoder_linkage.nim │ └── encoder_linkage.nim └── tests ├── Nim-logo.png ├── config.nims ├── sample.png ├── test1.nim └── test2.nim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/README.md -------------------------------------------------------------------------------- /nimwebp.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/nimwebp.nimble -------------------------------------------------------------------------------- /src/nimwebp/decoder.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/src/nimwebp/decoder.nim -------------------------------------------------------------------------------- /src/nimwebp/encoder.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/src/nimwebp/encoder.nim -------------------------------------------------------------------------------- /src/nimwebp/private/decoder_linkage.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/src/nimwebp/private/decoder_linkage.nim -------------------------------------------------------------------------------- /src/nimwebp/private/encoder_linkage.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/src/nimwebp/private/encoder_linkage.nim -------------------------------------------------------------------------------- /tests/Nim-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/tests/Nim-logo.png -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") -------------------------------------------------------------------------------- /tests/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/tests/sample.png -------------------------------------------------------------------------------- /tests/test1.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/tests/test1.nim -------------------------------------------------------------------------------- /tests/test2.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tormund/nimwebp/HEAD/tests/test2.nim --------------------------------------------------------------------------------