===========================================================================
| 566 | |
| 567 | //=========================================================================== |
| 568 | inline 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 | //=========================================================================== |
no test coverage detected