1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-09 20:25:19 +00:00

Merge pull request #483 from TomHarte/BetterClip

Picks more appropriate cropping now that I'm obeying HSYNC-as-blank.
This commit is contained in:
Thomas Harte
2018-06-23 16:42:44 -04:00
committed by GitHub

View File

@@ -338,7 +338,7 @@ class CRTCBusHandler {
"uint sample = texture(texID, coordinate).r;"
"return vec3(float((sample >> 4) & 3u), float((sample >> 2) & 3u), float(sample & 3u)) / 2.0;"
"}");
crt_->set_visible_area(Outputs::CRT::Rect(0.075f, 0.05f, 0.9f, 0.9f));
crt_->set_visible_area(Outputs::CRT::Rect(0.11f, 0.1f, 0.85f, 0.85f));
crt_->set_video_signal(Outputs::CRT::VideoSignal::RGB);
}