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

Separates the component parts of running an audio stream: task deferral, filtering and generation.

Walking towards improving opportunities for composition.
This commit is contained in:
Thomas Harte
2017-12-17 21:26:06 -05:00
parent eb6b612052
commit ac80d10cd8
37 changed files with 594 additions and 508 deletions
+2 -2
View File
@@ -67,8 +67,8 @@ void VideoOutput::set_colour_rom(const std::vector<uint8_t> &rom) {
}
}
std::shared_ptr<Outputs::CRT::CRT> VideoOutput::get_crt() {
return crt_;
Outputs::CRT::CRT *VideoOutput::get_crt() {
return crt_.get();
}
void VideoOutput::run_for(const Cycles cycles) {