From 29dd98420b3dfc949a8bc73ea978a6f05ca70d50 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Wed, 1 Aug 2018 11:19:43 +0200 Subject: Remove getFrameDecal() API Signed-off-by: Clifford Wolf --- ice40/arch.cc | 12 ------------ ice40/arch.h | 1 - ice40/archdefs.h | 1 - ice40/main.cc | 2 -- 4 files changed, 16 deletions(-) (limited to 'ice40') diff --git a/ice40/arch.cc b/ice40/arch.cc index 5545ddf4..b3d514b5 100644 --- a/ice40/arch.cc +++ b/ice40/arch.cc @@ -665,14 +665,6 @@ bool Arch::route() { return router1(getCtx()); } // ----------------------------------------------------------------------- -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; @@ -713,10 +705,6 @@ std::vector Arch::getDecalGraphics(DecalId decal) const { std::vector ret; - if (decal.type == DecalId::TYPE_FRAME) { - /* nothing */ - } - if (decal.type == DecalId::TYPE_GROUP) { int type = (decal.index >> 16) & 255; int x = (decal.index >> 8) & 255; diff --git a/ice40/arch.h b/ice40/arch.h index 07a8070a..bfec7c16 100644 --- a/ice40/arch.h +++ b/ice40/arch.h @@ -714,7 +714,6 @@ struct Arch : BaseCtx std::vector getDecalGraphics(DecalId decal) const; - DecalXY getFrameDecal() const; DecalXY getBelDecal(BelId bel) const; DecalXY getWireDecal(WireId wire) const; DecalXY getPipDecal(PipId pip) const; diff --git a/ice40/archdefs.h b/ice40/archdefs.h index 8a7449a8..9329609e 100644 --- a/ice40/archdefs.h +++ b/ice40/archdefs.h @@ -140,7 +140,6 @@ struct DecalId enum : int8_t { TYPE_NONE, - TYPE_FRAME, TYPE_BEL, TYPE_WIRE, TYPE_PIP, diff --git a/ice40/main.cc b/ice40/main.cc index 6e8385e6..0724acdf 100644 --- a/ice40/main.cc +++ b/ice40/main.cc @@ -317,8 +317,6 @@ int main(int argc, char *argv[]) std::cout << "\n"; svg_dump_decal(ctx.get(), ctx->getBelDecal(bel)); } - std::cout << "\n"; - svg_dump_decal(ctx.get(), ctx->getFrameDecal()); std::cout << "\n"; } -- cgit v1.2.3