diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-08-01 11:19:43 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-08-01 11:30:11 +0200 |
commit | 29dd98420b3dfc949a8bc73ea978a6f05ca70d50 (patch) | |
tree | d1476f8f8e9bcff3ae76f7dd17ff918b62c5f287 /ecp5/arch.cc | |
parent | faf309c1fed17323c4f9e90f2a9999c12c0020f8 (diff) | |
download | nextpnr-29dd98420b3dfc949a8bc73ea978a6f05ca70d50.tar.gz nextpnr-29dd98420b3dfc949a8bc73ea978a6f05ca70d50.tar.bz2 nextpnr-29dd98420b3dfc949a8bc73ea978a6f05ca70d50.zip |
Remove getFrameDecal() API
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r-- | ecp5/arch.cc | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc index a305e57b..6c3714cc 100644 --- a/ecp5/arch.cc +++ b/ecp5/arch.cc @@ -436,10 +436,6 @@ std::vector<GraphicElement> Arch::getDecalGraphics(DecalId decal) const { std::vector<GraphicElement> ret; - if (decal.type == DecalId::TYPE_FRAME) { - /* nothing */ - } - if (decal.type == DecalId::TYPE_BEL) { BelId bel; bel.index = decal.z; @@ -473,14 +469,6 @@ std::vector<GraphicElement> Arch::getDecalGraphics(DecalId decal) const return ret; } -DecalXY Arch::getFrameDecal() const -{ - DecalXY decalxy; - decalxy.decal.type = DecalId::TYPE_FRAME; - decalxy.decal.active = true; - return decalxy; -} - DecalXY Arch::getBelDecal(BelId bel) const { DecalXY decalxy; |