1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-23 03:32:32 +00:00

Merge pull request #552 from TomHarte/AppleIIBrightness

Turns down the Apple II brightness a little.
This commit is contained in:
Thomas Harte 2018-09-17 20:09:06 -04:00 committed by GitHub
commit a29a8e292b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ VideoBase::VideoBase(bool is_iie, std::function<void(Cycles)> &&target) :
crt_->set_composite_sampling_function(
"float composite_sample(usampler2D sampler, vec2 coordinate, float phase, float amplitude)"
"{"
"return clamp(texture(sampler, coordinate).r, 0.0, 1.0);"
"return clamp(texture(sampler, coordinate).r, 0.0, 0.66);"
"}");
// Show only the centre 75% of the TV frame.