[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

@@ -30,7 +30,8 @@ struct LGPipeMsg
enum
{
SETCURSORPOS,
SETDISPLAYMODE
SETDISPLAYMODE,
GPUSTATUS
}
type;
union
@@ -49,5 +50,11 @@ struct LGPipeMsg
uint32_t refresh;
}
displayMode;
struct
{
bool software;
}
gpuStatus;
};
};