Fix doc generator.

This commit is contained in:
treeform 2023-05-10 18:13:24 -07:00
parent 5a4c393fe2
commit c32c18dd8b
14 changed files with 18 additions and 18 deletions

View file

@ -1,4 +1,4 @@
import bitops, chroma, flatty/binny, pixie/common, pixie/images
import bitops, chroma, flatty/binny, ../common, ../images
# See: https://en.wikipedia.org/wiki/BMP_file_format
# See: https://bmptestsuite.sourceforge.io/

View file

@ -1,4 +1,4 @@
import chroma, flatty/binny, pixie/common, pixie/images, std/math, std/strutils,
import chroma, flatty/binny, ../common, ../images, std/math, std/strutils,
vmath, zippy/bitstreams
# See: https://www.w3.org/Graphics/GIF/spec-gif89a.txt

View file

@ -1,5 +1,5 @@
import chroma, flatty/binny, pixie/common, pixie/images, pixie/internal,
pixie/simd, std/decls, std/sequtils, std/strutils
import chroma, flatty/binny, ../common, ../images, ../internal,
../simd, std/decls, std/sequtils, std/strutils
# This JPEG decoder is loosely based on stb_image which is public domain.

View file

@ -1,5 +1,5 @@
import chroma, flatty/binny, math, pixie/common, pixie/images, pixie/internal,
pixie/simd, zippy, crunchy
import chroma, flatty/binny, math, ../common, ../images, ../internal,
../simd, zippy, crunchy
# See http://www.libpng.org/pub/png/spec/1.2/PNG-Contents.html

View file

@ -1,4 +1,4 @@
import chroma, flatty/binny, pixie/common, pixie/images, std/strutils
import chroma, flatty/binny, ../common, ../images, std/strutils
# See: http://netpbm.sourceforge.net/doc/ppm.html

View file

@ -1,4 +1,4 @@
import chroma, flatty/binny, pixie/common, pixie/images, pixie/internal
import chroma, flatty/binny, ../common, ../images, ../internal
# See: https://qoiformat.org/qoi-specification.pdf

View file

@ -1,7 +1,7 @@
## Load SVG files.
import chroma, pixie/common, pixie/images, pixie/internal, pixie/paints,
pixie/paths, strutils, tables, vmath, xmlparser, xmltree
import chroma, ../common, ../images, ../internal, ../paints,
../paths, strutils, tables, vmath, xmlparser, xmltree
when defined(pixieDebugSvg):
import strtabs

View file

@ -1,4 +1,4 @@
import chroma, flatty/binny, pixie/common, pixie/images, pixie/internal
import chroma, flatty/binny, ../common, ../images, ../internal
const
tiffSignatures* = [

View file

@ -1,4 +1,4 @@
import flatty/binny, flatty/encode, math, pixie/common, pixie/paths, sets,
import flatty/binny, flatty/encode, math, ../common, ../paths, sets,
strutils, tables, unicode, vmath
## See https://docs.microsoft.com/en-us/typography/opentype/spec/

View file

@ -1,4 +1,4 @@
import pixie/common, pixie/internal, pixie/paths, strutils, tables, unicode,
import ../common, ../internal, ../paths, strutils, tables, unicode,
vmath, xmlparser, xmltree
type SvgFont* = ref object

View file

@ -1,5 +1,5 @@
import bumpy, chroma, common, os, pixie/fontformats/opentype,
pixie/fontformats/svgfont, pixie/images, pixie/paints, pixie/paths,
import bumpy, chroma, common, os, fontformats/opentype,
fontformats/svgfont, images, paints, paths,
strutils, unicode, vmath
const

View file

@ -1,4 +1,4 @@
import avx, chroma, nimsimd/hassimd, nimsimd/avx2, pixie/blends, pixie/common, vmath
import avx, chroma, nimsimd/hassimd, nimsimd/avx2, ../blends, ../common, vmath
when defined(gcc) or defined(clang):
{.localPassC: "-mavx2".}

View file

@ -1,4 +1,4 @@
import chroma, nimsimd/hassimd, nimsimd/neon, pixie/blends, pixie/common, vmath
import chroma, nimsimd/hassimd, nimsimd/neon, ../blends, ../common, vmath
when defined(release):
{.push checks: off.}

View file

@ -1,4 +1,4 @@
import chroma, nimsimd/hassimd, nimsimd/sse2, pixie/blends, pixie/common, vmath
import chroma, nimsimd/hassimd, nimsimd/sse2, ../blends, ../common, vmath
when defined(release):
{.push checks: off.}