diff options
author | Reiko Asakura | 2021-03-19 00:20:20 -0400 |
---|---|---|
committer | Reiko Asakura | 2021-03-19 00:20:20 -0400 |
commit | d46e565bedc87143bf65793c60b74e3bf2967f6f (patch) | |
tree | 958496b73edb1d1f56ec9fefb4a5e279bef3f288 /include/user | |
parent | Remove dupe in display.h (diff) | |
download | vds-libraries-d46e565bedc87143bf65793c60b74e3bf2967f6f.tar.gz |
Merge common definitions in display.h
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/display.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/include/user/display.h b/include/user/display.h deleted file mode 100644 index 645f7b9..0000000 --- a/include/user/display.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - Vita Development Suite Libraries -*/ - -#ifndef _VDSUITE_USER_DISPLAY_H -#define _VDSUITE_USER_DISPLAY_H - -#include_next <display.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Primary display index - */ -int sceDisplayGetPrimaryHead(void); - -/** - * Get maximum framebuffer resolution - * - * @param[out] width - Maximum width - * @param[out] height - Maximum height - * - * @return 0 on success, < 0 on error. -*/ -int sceDisplayGetMaximumFrameBufResolution(int *width, int *height); - -/** - * Number of vertical blank pulses up to now for a display - * - * @param[in] display - Display index - */ -int sceDisplayGetVcountInternal(int display); - -#ifdef __cplusplus -} -#endif - -#endif /* _VDSUITE_USER_DISPLAY_H */ - |