aboutsummaryrefslogtreecommitdiffstats
path: root/common/nextpnr.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r--common/nextpnr.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h
index 5e8c2362..50465869 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -312,78 +312,6 @@ struct Context : Arch
// --------------------------------------------------------------
- NPNR_DEPRECATED std::vector<GraphicElement> getFrameGraphics() const
- {
- std::vector<GraphicElement> ret;
- DecalXY decalxy = getFrameDecal();
- ret = getDecalGraphics(decalxy.decal);
- for (auto &it : ret) {
- it.x1 += decalxy.x;
- it.x2 += decalxy.x;
- it.y1 += decalxy.y;
- it.y2 += decalxy.y;
- }
- return ret;
- }
-
- NPNR_DEPRECATED std::vector<GraphicElement> getBelGraphics(BelId bel) const
- {
- std::vector<GraphicElement> ret;
- DecalXY decalxy = getBelDecal(bel);
- ret = getDecalGraphics(decalxy.decal);
- for (auto &it : ret) {
- it.x1 += decalxy.x;
- it.x2 += decalxy.x;
- it.y1 += decalxy.y;
- it.y2 += decalxy.y;
- }
- return ret;
- }
-
- NPNR_DEPRECATED std::vector<GraphicElement> getWireGraphics(WireId wire) const
- {
- std::vector<GraphicElement> ret;
- DecalXY decalxy = getWireDecal(wire);
- ret = getDecalGraphics(decalxy.decal);
- for (auto &it : ret) {
- it.x1 += decalxy.x;
- it.x2 += decalxy.x;
- it.y1 += decalxy.y;
- it.y2 += decalxy.y;
- }
- return ret;
- }
-
- NPNR_DEPRECATED std::vector<GraphicElement> getPipGraphics(PipId pip) const
- {
- std::vector<GraphicElement> ret;
- DecalXY decalxy = getPipDecal(pip);
- ret = getDecalGraphics(decalxy.decal);
- for (auto &it : ret) {
- it.x1 += decalxy.x;
- it.x2 += decalxy.x;
- it.y1 += decalxy.y;
- it.y2 += decalxy.y;
- }
- return ret;
- }
-
- NPNR_DEPRECATED std::vector<GraphicElement> getGroupGraphics(GroupId group) const
- {
- std::vector<GraphicElement> ret;
- DecalXY decalxy = getGroupDecal(group);
- ret = getDecalGraphics(decalxy.decal);
- for (auto &it : ret) {
- it.x1 += decalxy.x;
- it.x2 += decalxy.x;
- it.y1 += decalxy.y;
- it.y2 += decalxy.y;
- }
- return ret;
- }
-
- // --------------------------------------------------------------
-
// provided by router1.cc
bool getActualRouteDelay(WireId src_wire, WireId dst_wire, delay_t &delay);