├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── images ├── gimp-2.8.x.png └── gimp-2.9.x.jpg └── src ├── CMakeLists.txt ├── config.h.in ├── webp-dialog.c ├── webp-dialog.h ├── webp-load.c ├── webp-load.h ├── webp-save.c ├── webp-save.h ├── webp.c └── webp.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /images/gimp-2.8.x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/images/gimp-2.8.x.png -------------------------------------------------------------------------------- /images/gimp-2.9.x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/images/gimp-2.9.x.jpg -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/webp-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/webp-dialog.c -------------------------------------------------------------------------------- /src/webp-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/webp-dialog.h -------------------------------------------------------------------------------- /src/webp-load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/webp-load.c -------------------------------------------------------------------------------- /src/webp-load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/webp-load.h -------------------------------------------------------------------------------- /src/webp-save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/webp-save.c -------------------------------------------------------------------------------- /src/webp-save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/webp-save.h -------------------------------------------------------------------------------- /src/webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/webp.c -------------------------------------------------------------------------------- /src/webp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathan-osman/gimp-webp/HEAD/src/webp.h --------------------------------------------------------------------------------