respect immediate draw

This commit is contained in:
Jan Kuhlmann 2025-01-15 11:02:35 +01:00
parent 353b46c2e9
commit 6cfa086a2e

View File

@ -894,6 +894,11 @@ namespace graphs
intermediate.texture[index].data |= value; intermediate.texture[index].data |= value;
} }
} }
// draw plot into terminal immediately if requested
if (options.draw_immediately) {
intermediate.draw();
}
} }
// plot from single data set // plot from single data set
template <typename T> template <typename T>