aboutsummaryrefslogtreecommitdiffstats
path: root/dummy
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-04 12:02:58 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-04 12:02:58 +0200
commiteb3c89bee97f76d12d68aaf3f150259277b615b8 (patch)
tree6b74316bcac2cd677edefbb0a439d52912f25428 /dummy
parent6840ffd9c09fd045f26afdb6d8ee329f628074c1 (diff)
downloadnextpnr-eb3c89bee97f76d12d68aaf3f150259277b615b8.tar.gz
nextpnr-eb3c89bee97f76d12d68aaf3f150259277b615b8.tar.bz2
nextpnr-eb3c89bee97f76d12d68aaf3f150259277b615b8.zip
Replace GuiLine with GraphicElement
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'dummy')
-rw-r--r--dummy/chip.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/dummy/chip.h b/dummy/chip.h
index cc5013df..f403552f 100644
--- a/dummy/chip.h
+++ b/dummy/chip.h
@@ -160,11 +160,6 @@ struct BelPinRange
BelPinIterator end() const { return e; }
};
-struct GuiLine
-{
- float x1, y1, x2, y2;
-};
-
struct ChipArgs
{
// ...
@@ -188,10 +183,10 @@ struct Chip
BelRange getBelsByType(BelType type) const;
BelType getBelType(BelId bel) const;
- void getBelPosition(BelId bel, float &x, float &y) const;
- void getWirePosition(WireId wire, float &x, float &y) const;
- vector<GuiLine> getBelGuiLines(BelId bel) const;
- vector<GuiLine> getWireGuiLines(WireId wire) const;
+ // void getBelPosition(BelId bel, float &x, float &y) const;
+ // void getWirePosition(WireId wire, float &x, float &y) const;
+ // vector<GuiLine> getBelGuiLines(BelId bel) const;
+ // vector<GuiLine> getWireGuiLines(WireId wire) const;
WireRange getWires() const;
WireDelayRange getWiresUphill(WireId wire) const;