1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Output, at last! Though sync is clearly way off.

This commit is contained in:
Thomas Harte 2016-01-09 21:53:33 -05:00
parent 09df218c01
commit 3d6f20b7b9
2 changed files with 9 additions and 4 deletions

View File

@ -188,10 +188,15 @@ inline void Machine::update_display()
if(_frameCycles >= end_of_hsync)
{
// assert sync for the first three lines of the display
// assert sync for the first three lines of the display, with a break at the end for horizontal alignment
if(_outputPosition < end_of_hsync)
{
_crt->output_sync(end_of_hsync * crt_cycles_multiplier);
for(int c = 0; c < 3; c++)
{
_crt->output_sync(9 * crt_cycles_multiplier);
_crt->output_blank(9 * crt_cycles_multiplier);
_crt->output_sync(110 * crt_cycles_multiplier);
}
_outputPosition = end_of_hsync;
}

View File

@ -387,10 +387,10 @@ static CVReturn DisplayLinkCallback(CVDisplayLinkRef displayLink, const CVTimeSt
"fragColour = 5.0 * texture(shadowMaskTexID, shadowMaskCoordinates) * vec4(yiqToRGB * vec3(y, i, q), 1.0);//sin(lateralVarying));\n";
NSString *const rgbFragmentShaderGlobals =
@"in vec2 srcCoordinatesVarying;\n";
@"in vec2 srcCoordinatesVarying;\n"; // texture(shadowMaskTexID, shadowMaskCoordinates) *
NSString *const rgbFragmentShaderBody =
@"fragColour = texture(shadowMaskTexID, shadowMaskCoordinates) * sample(srcCoordinatesVarying);//sin(lateralVarying));\n";
@"fragColour = sample(srcCoordinatesVarying);//sin(lateralVarying));\n";
switch(_signalType)
{