Fix doc generator.
This commit is contained in:
parent
5a4c393fe2
commit
c32c18dd8b
|
@ -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://en.wikipedia.org/wiki/BMP_file_format
|
||||||
# See: https://bmptestsuite.sourceforge.io/
|
# See: https://bmptestsuite.sourceforge.io/
|
||||||
|
|
|
@ -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
|
vmath, zippy/bitstreams
|
||||||
|
|
||||||
# See: https://www.w3.org/Graphics/GIF/spec-gif89a.txt
|
# See: https://www.w3.org/Graphics/GIF/spec-gif89a.txt
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import chroma, flatty/binny, pixie/common, pixie/images, pixie/internal,
|
import chroma, flatty/binny, ../common, ../images, ../internal,
|
||||||
pixie/simd, std/decls, std/sequtils, std/strutils
|
../simd, std/decls, std/sequtils, std/strutils
|
||||||
|
|
||||||
# This JPEG decoder is loosely based on stb_image which is public domain.
|
# This JPEG decoder is loosely based on stb_image which is public domain.
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import chroma, flatty/binny, math, pixie/common, pixie/images, pixie/internal,
|
import chroma, flatty/binny, math, ../common, ../images, ../internal,
|
||||||
pixie/simd, zippy, crunchy
|
../simd, zippy, crunchy
|
||||||
|
|
||||||
# See http://www.libpng.org/pub/png/spec/1.2/PNG-Contents.html
|
# See http://www.libpng.org/pub/png/spec/1.2/PNG-Contents.html
|
||||||
|
|
||||||
|
|
|
@ -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
|
# See: http://netpbm.sourceforge.net/doc/ppm.html
|
||||||
|
|
||||||
|
|
|
@ -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
|
# See: https://qoiformat.org/qoi-specification.pdf
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
## Load SVG files.
|
## Load SVG files.
|
||||||
|
|
||||||
import chroma, pixie/common, pixie/images, pixie/internal, pixie/paints,
|
import chroma, ../common, ../images, ../internal, ../paints,
|
||||||
pixie/paths, strutils, tables, vmath, xmlparser, xmltree
|
../paths, strutils, tables, vmath, xmlparser, xmltree
|
||||||
|
|
||||||
when defined(pixieDebugSvg):
|
when defined(pixieDebugSvg):
|
||||||
import strtabs
|
import strtabs
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import chroma, flatty/binny, pixie/common, pixie/images, pixie/internal
|
import chroma, flatty/binny, ../common, ../images, ../internal
|
||||||
|
|
||||||
const
|
const
|
||||||
tiffSignatures* = [
|
tiffSignatures* = [
|
||||||
|
|
|
@ -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
|
strutils, tables, unicode, vmath
|
||||||
|
|
||||||
## See https://docs.microsoft.com/en-us/typography/opentype/spec/
|
## See https://docs.microsoft.com/en-us/typography/opentype/spec/
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import pixie/common, pixie/internal, pixie/paths, strutils, tables, unicode,
|
import ../common, ../internal, ../paths, strutils, tables, unicode,
|
||||||
vmath, xmlparser, xmltree
|
vmath, xmlparser, xmltree
|
||||||
|
|
||||||
type SvgFont* = ref object
|
type SvgFont* = ref object
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import bumpy, chroma, common, os, pixie/fontformats/opentype,
|
import bumpy, chroma, common, os, fontformats/opentype,
|
||||||
pixie/fontformats/svgfont, pixie/images, pixie/paints, pixie/paths,
|
fontformats/svgfont, images, paints, paths,
|
||||||
strutils, unicode, vmath
|
strutils, unicode, vmath
|
||||||
|
|
||||||
const
|
const
|
||||||
|
|
|
@ -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):
|
when defined(gcc) or defined(clang):
|
||||||
{.localPassC: "-mavx2".}
|
{.localPassC: "-mavx2".}
|
||||||
|
|
|
@ -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):
|
when defined(release):
|
||||||
{.push checks: off.}
|
{.push checks: off.}
|
||||||
|
|
|
@ -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):
|
when defined(release):
|
||||||
{.push checks: off.}
|
{.push checks: off.}
|
||||||
|
|
Loading…
Reference in a new issue