├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── cmd └── iconvg-disassemble │ └── iconvg-disassemble.go ├── doc ├── code-of-conduct.md └── contributing.md ├── example ├── iconvg-to-png │ └── iconvg-to-png.c └── iconvg-viewer │ └── iconvg-viewer.c ├── go.mod ├── go.sum ├── iconvg-root-directory.txt ├── release └── c │ └── iconvg-unsupported-snapshot.c ├── script ├── gen-release-c.go └── print-one-byte-colors.go ├── spec └── iconvg-spec.md ├── src ├── c │ ├── README.md │ ├── aaa_package.h │ ├── aaa_private.h │ ├── aaa_public.h │ ├── broken.c │ ├── cairo.c │ ├── color.c │ ├── debug.c │ ├── decoder.c │ ├── error.c │ ├── matrix.c │ ├── paint.c │ ├── rectangle.c │ └── skia.c ├── dart │ ├── .gitignore │ ├── .metadata │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── decoder.dart │ │ └── widgets.dart │ ├── pubspec.yaml │ └── test │ │ ├── goldens │ │ ├── action-info.hires.default.png │ │ ├── action-info.hires.orange.png │ │ ├── action-info.hires.teal.png │ │ ├── action-info.lores.default.png │ │ ├── action-info.lores.orange.png │ │ ├── action-info.lores.teal.png │ │ ├── arcs.1024x128.png │ │ ├── arcs.128x1024.png │ │ ├── arcs.512x512.png │ │ ├── arcs.default.png │ │ ├── cowbell.default.png │ │ ├── elliptical.default.png │ │ ├── elliptical.rotated.aa.png │ │ ├── elliptical.rotated.aaWithSaveLayer.png │ │ ├── elliptical.rotated.default.png │ │ ├── elliptical.rotated.noclip.png │ │ ├── favicon.default.png │ │ ├── favicon.pink.png │ │ ├── favicon.teal.png │ │ ├── gradient.default.png │ │ ├── lod-polygon.10.png │ │ ├── lod-polygon.200.png │ │ ├── lod-polygon.75.green.png │ │ ├── lod-polygon.75.png │ │ ├── lod-polygon.85.green.png │ │ ├── lod-polygon.85.png │ │ ├── lod-polygon.default.png │ │ ├── video-005-primitive.default.png │ │ ├── video-005-primitive.rotated.aa.png │ │ ├── video-005-primitive.rotated.aaWithSaveLayer.png │ │ ├── video-005-primitive.rotated.default.png │ │ └── video-005-primitive.rotated.noclip.png │ │ └── iconvg_test.dart └── go │ └── lowlevel │ ├── buffer.go │ ├── color.go │ ├── decode.go │ ├── disassemble.go │ └── lowlevel.go └── test └── data ├── README.txt ├── action-info.hires.ivg ├── action-info.hires.ivg.disassembly ├── action-info.hires.png ├── action-info.iconvg ├── action-info.iconvg.disassembly ├── action-info.lores.ivg ├── action-info.lores.ivg.disassembly ├── action-info.lores.png ├── action-info.svg ├── arcs.iconvg ├── arcs.iconvg.disassembly ├── arcs.ivg ├── arcs.ivg.disassembly ├── arcs.png ├── blank.iconvg ├── blank.iconvg.disassembly ├── blank.ivg ├── blank.ivg.disassembly ├── blank.png ├── cowbell.iconvg ├── cowbell.iconvg.disassembly ├── cowbell.ivg ├── cowbell.ivg.disassembly ├── cowbell.png ├── cowbell.svg ├── elliptical.iconvg ├── elliptical.iconvg.disassembly ├── elliptical.ivg ├── elliptical.ivg.disassembly ├── elliptical.png ├── favicon.iconvg ├── favicon.iconvg.disassembly ├── favicon.ivg ├── favicon.ivg.disassembly ├── favicon.pink.png ├── favicon.png ├── favicon.svg ├── gradient.iconvg ├── gradient.iconvg.disassembly ├── gradient.ivg ├── gradient.ivg.disassembly ├── gradient.png ├── lod-polygon.64.png ├── lod-polygon.iconvg ├── lod-polygon.iconvg.disassembly ├── lod-polygon.ivg ├── lod-polygon.ivg.disassembly ├── lod-polygon.png ├── video-005.jpeg ├── video-005.primitive.iconvg ├── video-005.primitive.iconvg.disassembly ├── video-005.primitive.ivg ├── video-005.primitive.ivg.disassembly ├── video-005.primitive.png └── video-005.primitive.svg /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.out 3 | *~ 4 | /gen 5 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/README.md -------------------------------------------------------------------------------- /cmd/iconvg-disassemble/iconvg-disassemble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/cmd/iconvg-disassemble/iconvg-disassemble.go -------------------------------------------------------------------------------- /doc/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/doc/code-of-conduct.md -------------------------------------------------------------------------------- /doc/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/doc/contributing.md -------------------------------------------------------------------------------- /example/iconvg-to-png/iconvg-to-png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/example/iconvg-to-png/iconvg-to-png.c -------------------------------------------------------------------------------- /example/iconvg-viewer/iconvg-viewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/example/iconvg-viewer/iconvg-viewer.c -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/go.sum -------------------------------------------------------------------------------- /iconvg-root-directory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/iconvg-root-directory.txt -------------------------------------------------------------------------------- /release/c/iconvg-unsupported-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/release/c/iconvg-unsupported-snapshot.c -------------------------------------------------------------------------------- /script/gen-release-c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/script/gen-release-c.go -------------------------------------------------------------------------------- /script/print-one-byte-colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/script/print-one-byte-colors.go -------------------------------------------------------------------------------- /spec/iconvg-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/spec/iconvg-spec.md -------------------------------------------------------------------------------- /src/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/README.md -------------------------------------------------------------------------------- /src/c/aaa_package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/aaa_package.h -------------------------------------------------------------------------------- /src/c/aaa_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/aaa_private.h -------------------------------------------------------------------------------- /src/c/aaa_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/aaa_public.h -------------------------------------------------------------------------------- /src/c/broken.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/broken.c -------------------------------------------------------------------------------- /src/c/cairo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/cairo.c -------------------------------------------------------------------------------- /src/c/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/color.c -------------------------------------------------------------------------------- /src/c/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/debug.c -------------------------------------------------------------------------------- /src/c/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/decoder.c -------------------------------------------------------------------------------- /src/c/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/error.c -------------------------------------------------------------------------------- /src/c/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/matrix.c -------------------------------------------------------------------------------- /src/c/paint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/paint.c -------------------------------------------------------------------------------- /src/c/rectangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/rectangle.c -------------------------------------------------------------------------------- /src/c/skia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/c/skia.c -------------------------------------------------------------------------------- /src/dart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/.gitignore -------------------------------------------------------------------------------- /src/dart/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/.metadata -------------------------------------------------------------------------------- /src/dart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/LICENSE -------------------------------------------------------------------------------- /src/dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/README.md -------------------------------------------------------------------------------- /src/dart/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/analysis_options.yaml -------------------------------------------------------------------------------- /src/dart/lib/decoder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/lib/decoder.dart -------------------------------------------------------------------------------- /src/dart/lib/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/lib/widgets.dart -------------------------------------------------------------------------------- /src/dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/pubspec.yaml -------------------------------------------------------------------------------- /src/dart/test/goldens/action-info.hires.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/action-info.hires.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/action-info.hires.orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/action-info.hires.orange.png -------------------------------------------------------------------------------- /src/dart/test/goldens/action-info.hires.teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/action-info.hires.teal.png -------------------------------------------------------------------------------- /src/dart/test/goldens/action-info.lores.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/action-info.lores.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/action-info.lores.orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/action-info.lores.orange.png -------------------------------------------------------------------------------- /src/dart/test/goldens/action-info.lores.teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/action-info.lores.teal.png -------------------------------------------------------------------------------- /src/dart/test/goldens/arcs.1024x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/arcs.1024x128.png -------------------------------------------------------------------------------- /src/dart/test/goldens/arcs.128x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/arcs.128x1024.png -------------------------------------------------------------------------------- /src/dart/test/goldens/arcs.512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/arcs.512x512.png -------------------------------------------------------------------------------- /src/dart/test/goldens/arcs.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/arcs.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/cowbell.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/cowbell.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/elliptical.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/elliptical.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/elliptical.rotated.aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/elliptical.rotated.aa.png -------------------------------------------------------------------------------- /src/dart/test/goldens/elliptical.rotated.aaWithSaveLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/elliptical.rotated.aaWithSaveLayer.png -------------------------------------------------------------------------------- /src/dart/test/goldens/elliptical.rotated.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/elliptical.rotated.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/elliptical.rotated.noclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/elliptical.rotated.noclip.png -------------------------------------------------------------------------------- /src/dart/test/goldens/favicon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/favicon.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/favicon.pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/favicon.pink.png -------------------------------------------------------------------------------- /src/dart/test/goldens/favicon.teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/favicon.teal.png -------------------------------------------------------------------------------- /src/dart/test/goldens/gradient.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/gradient.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/lod-polygon.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/lod-polygon.10.png -------------------------------------------------------------------------------- /src/dart/test/goldens/lod-polygon.200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/lod-polygon.200.png -------------------------------------------------------------------------------- /src/dart/test/goldens/lod-polygon.75.green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/lod-polygon.75.green.png -------------------------------------------------------------------------------- /src/dart/test/goldens/lod-polygon.75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/lod-polygon.75.png -------------------------------------------------------------------------------- /src/dart/test/goldens/lod-polygon.85.green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/lod-polygon.85.green.png -------------------------------------------------------------------------------- /src/dart/test/goldens/lod-polygon.85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/lod-polygon.85.png -------------------------------------------------------------------------------- /src/dart/test/goldens/lod-polygon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/lod-polygon.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/video-005-primitive.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/video-005-primitive.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/video-005-primitive.rotated.aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/video-005-primitive.rotated.aa.png -------------------------------------------------------------------------------- /src/dart/test/goldens/video-005-primitive.rotated.aaWithSaveLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/video-005-primitive.rotated.aaWithSaveLayer.png -------------------------------------------------------------------------------- /src/dart/test/goldens/video-005-primitive.rotated.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/video-005-primitive.rotated.default.png -------------------------------------------------------------------------------- /src/dart/test/goldens/video-005-primitive.rotated.noclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/goldens/video-005-primitive.rotated.noclip.png -------------------------------------------------------------------------------- /src/dart/test/iconvg_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/dart/test/iconvg_test.dart -------------------------------------------------------------------------------- /src/go/lowlevel/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/go/lowlevel/buffer.go -------------------------------------------------------------------------------- /src/go/lowlevel/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/go/lowlevel/color.go -------------------------------------------------------------------------------- /src/go/lowlevel/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/go/lowlevel/decode.go -------------------------------------------------------------------------------- /src/go/lowlevel/disassemble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/go/lowlevel/disassemble.go -------------------------------------------------------------------------------- /src/go/lowlevel/lowlevel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/src/go/lowlevel/lowlevel.go -------------------------------------------------------------------------------- /test/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/README.txt -------------------------------------------------------------------------------- /test/data/action-info.hires.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/action-info.hires.ivg -------------------------------------------------------------------------------- /test/data/action-info.hires.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/action-info.hires.ivg.disassembly -------------------------------------------------------------------------------- /test/data/action-info.hires.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/action-info.hires.png -------------------------------------------------------------------------------- /test/data/action-info.iconvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/action-info.iconvg -------------------------------------------------------------------------------- /test/data/action-info.iconvg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/action-info.iconvg.disassembly -------------------------------------------------------------------------------- /test/data/action-info.lores.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/action-info.lores.ivg -------------------------------------------------------------------------------- /test/data/action-info.lores.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/action-info.lores.ivg.disassembly -------------------------------------------------------------------------------- /test/data/action-info.lores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/action-info.lores.png -------------------------------------------------------------------------------- /test/data/action-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/action-info.svg -------------------------------------------------------------------------------- /test/data/arcs.iconvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/arcs.iconvg -------------------------------------------------------------------------------- /test/data/arcs.iconvg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/arcs.iconvg.disassembly -------------------------------------------------------------------------------- /test/data/arcs.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/arcs.ivg -------------------------------------------------------------------------------- /test/data/arcs.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/arcs.ivg.disassembly -------------------------------------------------------------------------------- /test/data/arcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/arcs.png -------------------------------------------------------------------------------- /test/data/blank.iconvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/blank.iconvg -------------------------------------------------------------------------------- /test/data/blank.iconvg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/blank.iconvg.disassembly -------------------------------------------------------------------------------- /test/data/blank.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/blank.ivg -------------------------------------------------------------------------------- /test/data/blank.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/blank.ivg.disassembly -------------------------------------------------------------------------------- /test/data/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/blank.png -------------------------------------------------------------------------------- /test/data/cowbell.iconvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/cowbell.iconvg -------------------------------------------------------------------------------- /test/data/cowbell.iconvg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/cowbell.iconvg.disassembly -------------------------------------------------------------------------------- /test/data/cowbell.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/cowbell.ivg -------------------------------------------------------------------------------- /test/data/cowbell.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/cowbell.ivg.disassembly -------------------------------------------------------------------------------- /test/data/cowbell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/cowbell.png -------------------------------------------------------------------------------- /test/data/cowbell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/cowbell.svg -------------------------------------------------------------------------------- /test/data/elliptical.iconvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/elliptical.iconvg -------------------------------------------------------------------------------- /test/data/elliptical.iconvg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/elliptical.iconvg.disassembly -------------------------------------------------------------------------------- /test/data/elliptical.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/elliptical.ivg -------------------------------------------------------------------------------- /test/data/elliptical.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/elliptical.ivg.disassembly -------------------------------------------------------------------------------- /test/data/elliptical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/elliptical.png -------------------------------------------------------------------------------- /test/data/favicon.iconvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/favicon.iconvg -------------------------------------------------------------------------------- /test/data/favicon.iconvg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/favicon.iconvg.disassembly -------------------------------------------------------------------------------- /test/data/favicon.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/favicon.ivg -------------------------------------------------------------------------------- /test/data/favicon.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/favicon.ivg.disassembly -------------------------------------------------------------------------------- /test/data/favicon.pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/favicon.pink.png -------------------------------------------------------------------------------- /test/data/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/favicon.png -------------------------------------------------------------------------------- /test/data/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/favicon.svg -------------------------------------------------------------------------------- /test/data/gradient.iconvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/gradient.iconvg -------------------------------------------------------------------------------- /test/data/gradient.iconvg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/gradient.iconvg.disassembly -------------------------------------------------------------------------------- /test/data/gradient.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/gradient.ivg -------------------------------------------------------------------------------- /test/data/gradient.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/gradient.ivg.disassembly -------------------------------------------------------------------------------- /test/data/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/gradient.png -------------------------------------------------------------------------------- /test/data/lod-polygon.64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/lod-polygon.64.png -------------------------------------------------------------------------------- /test/data/lod-polygon.iconvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/lod-polygon.iconvg -------------------------------------------------------------------------------- /test/data/lod-polygon.iconvg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/lod-polygon.iconvg.disassembly -------------------------------------------------------------------------------- /test/data/lod-polygon.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/lod-polygon.ivg -------------------------------------------------------------------------------- /test/data/lod-polygon.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/lod-polygon.ivg.disassembly -------------------------------------------------------------------------------- /test/data/lod-polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/lod-polygon.png -------------------------------------------------------------------------------- /test/data/video-005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/video-005.jpeg -------------------------------------------------------------------------------- /test/data/video-005.primitive.iconvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/video-005.primitive.iconvg -------------------------------------------------------------------------------- /test/data/video-005.primitive.iconvg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/video-005.primitive.iconvg.disassembly -------------------------------------------------------------------------------- /test/data/video-005.primitive.ivg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/video-005.primitive.ivg -------------------------------------------------------------------------------- /test/data/video-005.primitive.ivg.disassembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/video-005.primitive.ivg.disassembly -------------------------------------------------------------------------------- /test/data/video-005.primitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/video-005.primitive.png -------------------------------------------------------------------------------- /test/data/video-005.primitive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/iconvg/HEAD/test/data/video-005.primitive.svg --------------------------------------------------------------------------------