new scheduling for scopes

This commit is contained in:
Boof2015
2026-07-25 20:16:33 -04:00
parent 6dd82420c8
commit 629be4d9ef
7 changed files with 283 additions and 23 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ interface OscilloscopeWaveProps {
active: boolean;
width: number;
height: number;
/** Live render cadence; 0 means display-sync. */
/** Live render cadence; 0 uses native adaptive display synchronization. */
frameMs?: number;
color?: string;
lineWidth?: number;
@@ -27,7 +27,7 @@ export function OscilloscopeWave({
active,
width,
height,
frameMs = 16,
frameMs = 0,
color: colorProp,
lineWidth = 2,
glow = false,