MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / updateFramebufferMonitorDoubleScanline

Function updateFramebufferMonitorDoubleScanline

source/NTSC.cpp:568–577  ·  view source on GitHub ↗

===========================================================================

Source from the content-addressed store, hash-verified

566
567//===========================================================================
568inline void updateFramebufferMonitorDoubleScanline( uint16_t signal, bgra_t *pTable )
569{
570 uint32_t *pLine0Curr = getScanlineCurrent();
571 uint32_t *pLine1Next = getScanlineNextInbetween();
572 const uint32_t color0 = getScanlineColor( signal, pTable );
573
574 *pLine1Next = color0;
575 *pLine0Curr = color0;
576 g_pVideoAddress++;
577}
578#endif
579
580//===========================================================================

Calls 3

getScanlineCurrentFunction · 0.85
getScanlineNextInbetweenFunction · 0.85
getScanlineColorFunction · 0.85

Tested by

no test coverage detected