===========================================================================
| 552 | |
| 553 | //=========================================================================== |
| 554 | inline void updateFramebufferMonitorSingleScanline( uint16_t signal, bgra_t *pTable ) |
| 555 | { |
| 556 | uint32_t *pLine0Curr = getScanlineCurrent(); |
| 557 | uint32_t *pLine1Next = getScanlineNextInbetween(); |
| 558 | const uint32_t color0 = getScanlineColor( signal, pTable ); |
| 559 | const uint32_t color1 = 0; // Remove blending for consistent DHGR MIX mode (GH#631) |
| 560 | // const uint32_t color1 = ((color0 & 0x00fcfcfc) >> 2); // 25% Blend (original) |
| 561 | |
| 562 | *pLine1Next = color1 | ALPHA32_MASK; |
| 563 | *pLine0Curr = color0; |
| 564 | g_pVideoAddress++; |
| 565 | } |
| 566 | |
| 567 | //=========================================================================== |
| 568 | inline void updateFramebufferMonitorDoubleScanline( uint16_t signal, bgra_t *pTable ) |
no test coverage detected