r-lib / ragg

Graphic Devices Based on AGG
https://ragg.r-lib.org
Other
172 stars 24 forks source link

`dev.capabilities("glyphs")` is `NA` instead of `TRUE` #161

Closed trevorld closed 6 months ago

trevorld commented 6 months ago
ragg::agg_png()
dev.capabilities("glyphs")
invisible(dev.off())
$glyphs
[1] NA

In contrast the Cairo device reports TRUE:

png(type="cairo")
dev.capabilities("glyphs")
invisible(dev.off())
$glyphs
[1] TRUE
thomasp85 commented 6 months ago

Thank you for the quick discovery