diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-13 12:48:58 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-13 12:48:58 +0200 |
commit | 1e314cc0ced067d72cea54c8225cf9d3ed0b6c14 (patch) | |
tree | c173f3746dfb352f95e504cbf335e9372e40f3fc /dummy/chip.cc | |
parent | 145c849596bdcd24f3b4e617eeb4ee06e1b93452 (diff) | |
download | nextpnr-1e314cc0ced067d72cea54c8225cf9d3ed0b6c14.tar.gz nextpnr-1e314cc0ced067d72cea54c8225cf9d3ed0b6c14.tar.bz2 nextpnr-1e314cc0ced067d72cea54c8225cf9d3ed0b6c14.zip |
Update chip Graphics API
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'dummy/chip.cc')
-rw-r--r-- | dummy/chip.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dummy/chip.cc b/dummy/chip.cc index bab65ae4..b8a23709 100644 --- a/dummy/chip.cc +++ b/dummy/chip.cc @@ -175,25 +175,25 @@ float Chip::estimateDelay(PosInfo src, PosInfo dst) const // --------------------------------------------------------------- -std::vector<GraphicElement> Chip::getBelGraphics(BelId bel) const +std::vector<GraphicElement> Chip::getFrameGraphics() const { static std::vector<GraphicElement> ret; return ret; } -std::vector<GraphicElement> Chip::getWireGraphics(WireId wire) const +std::vector<GraphicElement> Chip::getBelGraphics(BelId bel) const { static std::vector<GraphicElement> ret; return ret; } -std::vector<GraphicElement> Chip::getPipGraphics(PipId pip) const +std::vector<GraphicElement> Chip::getWireGraphics(WireId wire) const { static std::vector<GraphicElement> ret; return ret; } -std::vector<GraphicElement> Chip::getFrameGraphics() const +std::vector<GraphicElement> Chip::getPipGraphics(PipId pip) const { static std::vector<GraphicElement> ret; return ret; |