mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-18 17:06:15 +00:00
"Doubles" the bandwidth given to composite signals.
Because I suspect it may inadvertently have been halved previously. I'm investigating.
This commit is contained in:
parent
e12ab8fe2e
commit
93ece2aec7
@ -413,7 +413,7 @@ void OpenGLOutputBuilder::set_gamma() {
|
||||
}
|
||||
|
||||
float OpenGLOutputBuilder::get_composite_output_width() const {
|
||||
return (static_cast<float>(colour_cycle_numerator_) * 4.0f) / static_cast<float>(colour_cycle_denominator_ * IntermediateBufferWidth);
|
||||
return static_cast<float>(colour_cycle_numerator_ * 8) / static_cast<float>(colour_cycle_denominator_ * IntermediateBufferWidth);
|
||||
}
|
||||
|
||||
void OpenGLOutputBuilder::set_output_shader_width() {
|
||||
|
Loading…
Reference in New Issue
Block a user