Skip to content

Commit a51bcba

Browse files
committed
drc markers are now saved in the db and no longer need to be loaded.
Select them from the db for visibility. Signed-off-by: Matt Liberty <[email protected]>
1 parent c64e96e commit a51bcba

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

flow/scripts/save_images.tcl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ set height [[[ord::get_db_block] getBBox] getDY]
66
set height [ord::dbu_to_microns $height]
77
set resolution [expr $height / 1000]
88

9-
# Show the drc markers (if any)
10-
if {[file exists $::env(REPORTS_DIR)/5_route_drc.rpt] == 1} {
11-
gui::load_drc $::env(REPORTS_DIR)/5_route_drc.rpt
9+
set markerdb [[ord::get_db_block] findMarkerCategory DRC]
10+
if {$markerdb != "NULL" && [$markerdb getMarkerCount] > 0} {
11+
gui::select_marker_category $markerdb
1212
}
13-
13+
1414
gui::clear_selections
1515

1616
# Setup initial visibility to avoid any previous settings

tools/OpenROAD

Submodule OpenROAD updated 265 files

0 commit comments

Comments
 (0)