aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/chip.h
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 /ice40/chip.h
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 'ice40/chip.h')
-rw-r--r--ice40/chip.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/ice40/chip.h b/ice40/chip.h
index 7ce1a406..57f0fa99 100644
--- a/ice40/chip.h
+++ b/ice40/chip.h
@@ -272,11 +272,6 @@ struct BelPinRange
// -----------------------------------------------------------------------
-struct GuiLine
-{
- float x1, y1, x2, y2;
-};
-
struct ChipArgs
{
enum {
@@ -346,8 +341,10 @@ struct Chip
// FIXME: void getBelPosition(BelId bel, float &x, float &y) const;
// FIXME: void getWirePosition(WireId wire, float &x, float &y) const;
- // FIXME: vector<GuiLine> getBelGuiLines(BelId bel) const;
- // FIXME: vector<GuiLine> getWireGuiLines(WireId wire) const;
+ // FIXME: vector<GraphicElement> getBelGraphics(BelId bel) const;
+ // FIXME: vector<GraphicElement> getWireGraphics(WireId wire) const;
+ // FIXME: vector<GraphicElement> getPipGraphics(WireId src, WireId dst) const;
+ // FIXME: vector<GraphicElement> getFrameGraphics() const;
AllWireRange getWires() const
{