[idd] ipc: implement reporting of GPU software status

This commit is contained in:
Geoffrey McRae
2026-06-03 17:48:32 +10:00
committed by Geoffrey McRae
parent cb70643fa4
commit 803aea0d21
8 changed files with 43 additions and 1 deletions

View File

@@ -264,6 +264,10 @@ void CPipeClient::Thread()
HandleSetDisplayMode(msg);
break;
case LGPipeMsg::GPUSTATUS:
HandleGPUStatus(msg);
break;
default:
DEBUG_ERROR("Unknown message type %d", msg.type);
break;
@@ -300,3 +304,8 @@ void CPipeClient::HandleSetDisplayMode(const LGPipeMsg& msg)
if (result != DISP_CHANGE_SUCCESSFUL)
DEBUG_ERROR("ChangeDisplaySettingsEx Failed (0x%08x)", result);
}
void CPipeClient::HandleGPUStatus(const LGPipeMsg& msg)
{
// TODO: implement me
}

View File

@@ -49,6 +49,7 @@ private:
void HandleSetCursorPos(const LGPipeMsg& msg);
void HandleSetDisplayMode(const LGPipeMsg& msg);
void HandleGPUStatus(const LGPipeMsg& msg);
public:
~CPipeClient() { DeInit(); }