size_t len = _SysRead(m_fd, rxbuf.data(), rxbuf.capacity());
if( len == (size_t)-1 )
throw ::std::system_error(errno, ::std::system_category());
- //_SysDebug("CClient_AcessIPCPipe::HandleReceive - Rx %i/%i bytes", len, rxbuf.capacity());
- _SysDebugHex("CClient_AcessIPCPipe::HandleReceive", rxbuf.data(), len);
+ _SysDebug("CClient_AcessIPCPipe::HandleReceive - Rx %i/%i bytes", len, rxbuf.capacity());
+ //_SysDebugHex("CClient_AcessIPCPipe::HandleReceive", rxbuf.data(), len);
rxbuf.resize(len);
CDeserialiser msg( ::std::move(rxbuf) );
void CControl::renderLine(CSurface& dest, int y, ::std::vector<uint32_t>& scanline, const CRect& rect, const uint32_t* ctrl_line) const
{
- _SysDebug("renderLine: (y=%i,rect={(%i,%i) %ix%i}", y, rect.m_x, rect.m_y, rect.m_w, rect.m_h);
+ //_SysDebug("renderLine: (y=%i,rect={(%i,%i) %ix%i}", y, rect.m_x, rect.m_y, rect.m_w, rect.m_h);
const int left_fill_end = rect.m_w / 2 - m_inner_x;
const int right_fill_end = rect.m_w - m_edge_x;
{
uint16_t win_id = message.ReadU16();
uint16_t attr_id = message.ReadU16();
- _SysDebug("_SetWindowAttr: (%i, %i)", win_id, attr_id);
+ _SysDebug("_SetWindowAttr: (Win=%i, ID=%i)", win_id, attr_id);
CWindow* win = client.GetWindow(win_id);
if(!win) {
uint16_t h = message.ReadU16();
uint16_t ctrl_id = message.ReadU16();
uint16_t frame = message.ReadU16();
- _SysDebug("_DrawCtl: (%i, (%i,%i) %ix%i %i %06x)", win_id, x, y, w, h, ctrl_id, frame);
+ _SysDebug("_DrawCtl: (%i, (%i,%i) %ix%i Ctl%i frame?=0x%04x)", win_id, x, y, w, h, ctrl_id, frame);
CWindow* win = client.GetWindow(win_id);
if(!win) {