No need to check for rune.uint32 > SP.uint32 because typeset alreayd does.

This commit is contained in:
treeform 2021-10-01 10:18:12 -07:00
parent c0f31b276f
commit 8a88cd29fa

View file

@ -107,20 +107,16 @@ proc isCCW(typeface: Typeface): bool {.inline.} =
proc hasGlyph*(typeface: Typeface, rune: Rune): bool {.inline.} =
## Returns if there is a glyph for this rune.
if rune.uint32 > SP.uint32: # Empty paths for control runes (not tofu)
if typeface.opentype != nil:
typeface.opentype.hasGlyph(rune)
else:
typeface.svgFont.hasGlyph(rune)
else:
false
proc getGlyphPath*(
typeface: Typeface, rune: Rune
): Path {.inline, raises: [PixieError].} =
## The glyph path for the rune.
result = newPath()
if rune.uint32 > SP.uint32: # Empty paths for control runes (not tofu)
if typeface.hasGlyph(rune):
if typeface.opentype != nil:
result.addPath(typeface.opentype.getGlyphPath(rune))
@ -153,7 +149,6 @@ proc getAdvance*(typeface: Typeface, rune: Rune): float32 {.inline, raises: [].}
else:
return typeface.svgFont.getAdvance(rune)
proc getKerningAdjustment*(
typeface: Typeface, left, right: Rune
): float32 {.inline, raises: [].} =