diff options
author | David Shah <dave@ds0.me> | 2020-02-15 23:34:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-15 23:34:50 +0000 |
commit | affb12cc27ebf409eade062c4c59bb98569d8147 (patch) | |
tree | 4d79e9dcc6b476e8b88023ca3244ae23fea6ec5a /common/nextpnr.h | |
parent | e0b4f0ee63072f0e5aa86b4fa9ca1f488ae57790 (diff) | |
parent | b6158f94f6e83e7fac67c678effd21ec932cd0c2 (diff) | |
download | nextpnr-affb12cc27ebf409eade062c4c59bb98569d8147.tar.gz nextpnr-affb12cc27ebf409eade062c4c59bb98569d8147.tar.bz2 nextpnr-affb12cc27ebf409eade062c4c59bb98569d8147.zip |
Merge pull request #398 from YosysHQ/svg
svg: Basic SVG graphics rendering
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r-- | common/nextpnr.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index a786608d..66bba997 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -871,6 +871,11 @@ struct Context : Arch, DeterministicRNG // -------------------------------------------------------------- + // provided by svg.cc + void writeSVG(const std::string &filename, const std::string &flags = "") const; + + // -------------------------------------------------------------- + uint32_t checksum() const; void check() const; |