diff options
author | gatecat <gatecat@ds0.me> | 2022-12-07 10:00:53 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2022-12-07 10:00:53 +0100 |
commit | e260ac33abdd175f38ea5d8367c52a154b486648 (patch) | |
tree | 56ca8a3877a1270bcac51160067e1016abcb97cf /common/kernel/arch_api.h | |
parent | cd3b76e3f7ce9d9927087f6fdd38e04968688ee7 (diff) | |
download | nextpnr-e260ac33abdd175f38ea5d8367c52a154b486648.tar.gz nextpnr-e260ac33abdd175f38ea5d8367c52a154b486648.tar.bz2 nextpnr-e260ac33abdd175f38ea5d8367c52a154b486648.zip |
refactor: ArcBounds -> BoundingBox
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'common/kernel/arch_api.h')
-rw-r--r-- | common/kernel/arch_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/kernel/arch_api.h b/common/kernel/arch_api.h index 49be489b..94a88338 100644 --- a/common/kernel/arch_api.h +++ b/common/kernel/arch_api.h @@ -118,7 +118,7 @@ template <typename R> struct ArchAPI : BaseCtx virtual uint32_t getDelayChecksum(delay_t v) const = 0; virtual bool getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay_t &budget) const = 0; virtual delay_t estimateDelay(WireId src, WireId dst) const = 0; - virtual ArcBounds getRouteBoundingBox(WireId src, WireId dst) const = 0; + virtual BoundingBox getRouteBoundingBox(WireId src, WireId dst) const = 0; // Decal methods virtual typename R::DecalGfxRangeT getDecalGraphics(DecalId decal) const = 0; virtual DecalXY getBelDecal(BelId bel) const = 0; @@ -141,7 +141,7 @@ template <typename R> struct ArchAPI : BaseCtx virtual typename R::BucketBelRangeT getBelsInBucket(BelBucketId bucket) const = 0; // Cluster methods virtual CellInfo *getClusterRootCell(ClusterId cluster) const = 0; - virtual ArcBounds getClusterBounds(ClusterId cluster) const = 0; + virtual BoundingBox getClusterBounds(ClusterId cluster) const = 0; virtual Loc getClusterOffset(const CellInfo *cell) const = 0; virtual bool isClusterStrict(const CellInfo *cell) const = 0; virtual bool getClusterPlacement(ClusterId cluster, BelId root_bel, |