1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-01 22:41:32 +00:00
CLK/Outputs/SoftwareRendering/ScanTarget.cpp
2022-07-03 21:54:28 -04:00

29 lines
575 B
C++

//
// SoftwareScanTarget.cpp
// Clock Signal
//
// Created by Thomas Harte on 02/07/2022.
// Copyright © 2022 Thomas Harte. All rights reserved.
//
#include "ScanTarget.hpp"
using namespace Outputs::Display::Software;
template <
Outputs::Display::InputDataType input_type,
Outputs::Display::DisplayType display_type,
Outputs::Display::ColourSpace colour_space
> void ScanTarget::process() {
// TODO.
}
void ScanTarget::set_modals(Modals m) {
printf("");
}
void ScanTarget::submit() {
scan_buffer_pointer_ = sample_buffer_pointer_ = 0;
has_failed_ = false;
}