diff options
Diffstat (limited to 'include/kernel/lowio/dsi.h')
-rw-r--r-- | include/kernel/lowio/dsi.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/kernel/lowio/dsi.h b/include/kernel/lowio/dsi.h index 42c0bb9..e34bbcd 100644 --- a/include/kernel/lowio/dsi.h +++ b/include/kernel/lowio/dsi.h @@ -21,12 +21,12 @@ typedef enum SceDsiHead { SCE_DSI_HEAD_HDMI = 1, } SceDsiHead; -int sceDsiEnableHead(int head); -int sceDsiDisableHead(int head); -int sceDsiSendBlankingPacket(int head); +int sceDsiStartMaster(int head); +int sceDsiStopMaster(int head); +int sceDsiStopDisplay(int head); int sceDsiSetLanesAndPixelSize(int head, int lanes, int pixelsize); -int sceDsiSetVic(int head, int vic); -int sceDsiGetVicResolution(int vic, int *width, int *height); +int sceDsiSetDisplayMode(int head, int vic); +int sceDsiQueryResolutionSize(int vic, int *width, int *height); int sceDsiGetPixelClock(int head); int sceDsiGenericShortWrite(int head, int param0, int param1, int param2); int sceDsiGenericReadRequest(int head, int param, void *buff, unsigned int size); |