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

Reduces scan_buffer_ to a saner size.

Albeit still probably overspecified.
This commit is contained in:
Thomas Harte 2020-07-28 22:36:57 -04:00
parent 1942742d73
commit 5165e65021

View File

@ -151,7 +151,7 @@ class ScanTarget: public Outputs::Display::BufferingScanTarget {
// Storage for the various buffers.
std::vector<uint8_t> write_area_texture_;
std::array<Scan, 16384> scan_buffer_;
std::array<Scan, LineBufferHeight*5> scan_buffer_;
std::array<Line, LineBufferHeight> line_buffer_;
std::array<LineMetadata, LineBufferHeight> line_metadata_buffer_;
};