├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── cairo.nimble ├── src ├── cairo.nim ├── cairo_pragma.nim ├── cairoft.nim ├── cairowin32.nim └── cairoxlib.nim └── tests ├── arc.nim ├── arc.png ├── clip.nim ├── clip.png ├── clip_image.nim ├── clip_image.png ├── curve_to.nim ├── curve_to.png ├── dash.nim ├── dash.png ├── data └── romedalen.png ├── fill_and_stroke.nim ├── fill_and_stroke.png ├── gen_readme.nim ├── gradient.nim ├── gradient.png ├── image.nim ├── image.png ├── image_pattern.nim ├── image_pattern.png ├── line_cap.nim ├── line_cap.png ├── line_join.nim ├── line_join.png ├── nim.cfg ├── realtime.png ├── realtime_glfw.nim ├── realtime_glut.nim ├── realtime_sdl2.nim ├── rounded_rectangle.nim ├── rounded_rectangle.png ├── text.nim ├── text.png ├── text_align.nim └── text_align.png /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/README.md -------------------------------------------------------------------------------- /cairo.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/cairo.nimble -------------------------------------------------------------------------------- /src/cairo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/src/cairo.nim -------------------------------------------------------------------------------- /src/cairo_pragma.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/src/cairo_pragma.nim -------------------------------------------------------------------------------- /src/cairoft.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/src/cairoft.nim -------------------------------------------------------------------------------- /src/cairowin32.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/src/cairowin32.nim -------------------------------------------------------------------------------- /src/cairoxlib.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/src/cairoxlib.nim -------------------------------------------------------------------------------- /tests/arc.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/arc.nim -------------------------------------------------------------------------------- /tests/arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/arc.png -------------------------------------------------------------------------------- /tests/clip.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/clip.nim -------------------------------------------------------------------------------- /tests/clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/clip.png -------------------------------------------------------------------------------- /tests/clip_image.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/clip_image.nim -------------------------------------------------------------------------------- /tests/clip_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/clip_image.png -------------------------------------------------------------------------------- /tests/curve_to.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/curve_to.nim -------------------------------------------------------------------------------- /tests/curve_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/curve_to.png -------------------------------------------------------------------------------- /tests/dash.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/dash.nim -------------------------------------------------------------------------------- /tests/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/dash.png -------------------------------------------------------------------------------- /tests/data/romedalen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/data/romedalen.png -------------------------------------------------------------------------------- /tests/fill_and_stroke.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/fill_and_stroke.nim -------------------------------------------------------------------------------- /tests/fill_and_stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/fill_and_stroke.png -------------------------------------------------------------------------------- /tests/gen_readme.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/gen_readme.nim -------------------------------------------------------------------------------- /tests/gradient.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/gradient.nim -------------------------------------------------------------------------------- /tests/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/gradient.png -------------------------------------------------------------------------------- /tests/image.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/image.nim -------------------------------------------------------------------------------- /tests/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/image.png -------------------------------------------------------------------------------- /tests/image_pattern.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/image_pattern.nim -------------------------------------------------------------------------------- /tests/image_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/image_pattern.png -------------------------------------------------------------------------------- /tests/line_cap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/line_cap.nim -------------------------------------------------------------------------------- /tests/line_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/line_cap.png -------------------------------------------------------------------------------- /tests/line_join.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/line_join.nim -------------------------------------------------------------------------------- /tests/line_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/line_join.png -------------------------------------------------------------------------------- /tests/nim.cfg: -------------------------------------------------------------------------------- 1 | --path:"../src/" -------------------------------------------------------------------------------- /tests/realtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/realtime.png -------------------------------------------------------------------------------- /tests/realtime_glfw.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/realtime_glfw.nim -------------------------------------------------------------------------------- /tests/realtime_glut.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/realtime_glut.nim -------------------------------------------------------------------------------- /tests/realtime_sdl2.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/realtime_sdl2.nim -------------------------------------------------------------------------------- /tests/rounded_rectangle.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/rounded_rectangle.nim -------------------------------------------------------------------------------- /tests/rounded_rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/rounded_rectangle.png -------------------------------------------------------------------------------- /tests/text.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/text.nim -------------------------------------------------------------------------------- /tests/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/text.png -------------------------------------------------------------------------------- /tests/text_align.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/text_align.nim -------------------------------------------------------------------------------- /tests/text_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nim-lang/cairo/HEAD/tests/text_align.png --------------------------------------------------------------------------------