1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 19:17:52 +00:00

Advances back to a semi-complete monochrome composite output.

i.e. composite phase and amplitude is ostensibly flowing to its new destination.
This commit is contained in:
Thomas Harte
2019-01-11 22:02:15 -05:00
parent ccb52fb625
commit 5d9521fcb9
5 changed files with 232 additions and 39 deletions
+2 -1
View File
@@ -293,8 +293,9 @@ struct ScanTarget {
@param event The event.
@param is_visible @c true if the output stream is visible immediately after this event; @c false otherwise.
@param location The location of the event.
@param composite_amplitude The amplitude of the colour burst on this line (0, if no colour burst was found).
*/
virtual void announce(Event event, bool is_visible, const Scan::EndPoint &location) {}
virtual void announce(Event event, bool is_visible, const Scan::EndPoint &location, uint8_t composite_amplitude) {}
};
/*!