1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Attempt a line output shader.

This commit is contained in:
Thomas Harte
2026-02-04 14:41:34 -05:00
parent d5fa5d4dd4
commit 65ebcd9c99
8 changed files with 187 additions and 0 deletions
+2
View File
@@ -164,6 +164,7 @@ private:
std::array<DirtyZone, 2> dirty_zones_buffer_{};
VertexArray scans_;
VertexArray lines_;
VertexArray dirty_zones_;
Texture source_texture_;
@@ -175,6 +176,7 @@ private:
Shader composition_shader_;
Shader separation_shader_;
Shader demodulation_shader_;
Shader line_output_shader_;
CopyShader copy_shader_;
};