Bypass the rendering pipeline for highlighting to reduce (eliminate) latency

Fixes #15
This commit is contained in:
Ian Gulliver
2019-07-14 02:26:00 +00:00
parent a4630ba92a
commit f3823812c7
18 changed files with 96 additions and 123 deletions

View File

@@ -227,7 +227,6 @@ class Layout {
to: link.to,
id: link.id,
label: link.label,
highlight: link.highlight,
});
}
}
@@ -240,7 +239,6 @@ class Layout {
for (let link of links) {
this.links_.push(
new LayoutLink(link.from, link.to, link.id, link.label,
link.highlight,
this.nodesByPos_, this.linksByPos_,
this.labelsByPos_));
}