diff options
author | David Shah <dave@ds0.me> | 2018-11-16 13:25:51 +0000 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2018-11-16 13:25:51 +0000 |
commit | 9c52afcf5fabd888ec7d89e506ebe00c5a1a3640 (patch) | |
tree | 1235428896dcae4bbd8daf6be34a21a7510e2d8c /ice40 | |
parent | 20aa0a0eedbce02f50e134772dcd2b4a5be830e4 (diff) | |
download | nextpnr-9c52afcf5fabd888ec7d89e506ebe00c5a1a3640.tar.gz nextpnr-9c52afcf5fabd888ec7d89e506ebe00c5a1a3640.tar.bz2 nextpnr-9c52afcf5fabd888ec7d89e506ebe00c5a1a3640.zip |
clangformat
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/gfx.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ice40/gfx.cc b/ice40/gfx.cc index c41c424b..7ef43663 100644 --- a/ice40/gfx.cc +++ b/ice40/gfx.cc @@ -972,11 +972,11 @@ void gfxTilePip(std::vector<GraphicElement> &g, int x, int y, GfxTileWireId src, return; } - if (getWireXY_local(src, x1, y1) && getWireXY_local(dst, x2, y2)) { + if (getWireXY_local(src, x1, y1) && getWireXY_local(dst, x2, y2)) { pipGfx(g, x, y, x1, y1, x2, y2, local_swbox_x1, local_swbox_y1, local_swbox_x2, local_swbox_y2, style); return; } - + if (TILE_WIRE_LUTFF_0_IN_0_LUT <= src && src <= TILE_WIRE_LUTFF_7_IN_3_LUT && TILE_WIRE_LUTFF_0_OUT <= dst && dst <= TILE_WIRE_LUTFF_7_OUT) { int lut_idx = (src - TILE_WIRE_LUTFF_0_IN_0_LUT) / 4; |