The file Esd_Context.c in function Esd_Render(Esd_Context *ec)
has code lines in DEBUG builds:
looks a bit suspect to me. IMHO this should be an opt-in sequence in request, not the default for debug.
has code lines in DEBUG builds:
Code Select
#if defined(_DEBUG)
// This will cause a dark red screen in case background video incorrectly swaps the display
EVE_Hal_startTransfer(phost, EVE_TRANSFER_WRITE, RAM_DL);
EVE_Hal_transfer32(phost, CLEAR_COLOR_RGB(0x40, 0x00, 0x20));
EVE_Hal_transfer32(phost, CLEAR(1, 1, 1));
looks a bit suspect to me. IMHO this should be an opt-in sequence in request, not the default for debug.