1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Add TODO.

This commit is contained in:
Thomas Harte 2023-02-07 22:28:18 -05:00
parent 3c3efe3e22
commit c6401f0444

View File

@ -242,6 +242,13 @@ template <bool logical, bool include_source> struct Rectangle: public Command {
}
start_x_[1] = context.destination.v[0];
width_ = context.size.v[0];
if(!width_) {
// TODO: this should mean 'maximal' width.
// (aside: it's still unclear to me whether commands are
// automatically clipped to the display; I think so but
// don't want to spend any time on it until I'm certain)
}
}
/// Advances the current destination and, if @c include_source is @c true also the source;