summaryrefslogtreecommitdiff
path: root/include/kernel/lowio/dsi.h
diff options
context:
space:
mode:
authorReiko Asakura2021-03-15 19:29:14 -0400
committerReiko Asakura2021-03-15 19:29:14 -0400
commit0441d8b308e58f9391f4715b8f95db7a8b0f9d2f (patch)
tree88db82fb757d36a8e19d7ca7652598682255cd10 /include/kernel/lowio/dsi.h
parentUpdate ScePafStdc names (diff)
downloadvds-libraries-0441d8b308e58f9391f4715b8f95db7a8b0f9d2f.tar.gz
Update names from prototype 0.940 display.skprx
1. sceKernelGetKPLS is inferred from similar names. 2. sceDsiSetLanesAndPixelSize is also called sceDsiSetDisplayMode in the debug logs, but that is probably a mistake.
Diffstat (limited to '')
-rw-r--r--include/kernel/lowio/dsi.h10
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);