mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 08:49:37 +00:00
Reduces scan_buffer_ to a saner size.
Albeit still probably overspecified.
This commit is contained in:
parent
1942742d73
commit
5165e65021
@ -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_;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user