mirror of
https://github.com/gnif/LookingGlass.git
synced 2026-06-05 06:14:25 +00:00
[idd] ipc: implement reporting of GPU software status
This commit is contained in:
committed by
Geoffrey McRae
parent
cb70643fa4
commit
803aea0d21
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user