1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_KERNEL_DISPLAY_H
#define _VDSUITE_KERNEL_DISPLAY_H
#include_next <display.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* Extended framebuffer information
*/
typedef struct SceDisplayFrameBufInfo {
SceSize size; //!< sizeof(SceDisplayFrameBufInfo)
SceUID pid; //!< PID of the process owning this framebuffer
unsigned int vblankcount; //!< Amount of VBlanks this framebuffer has been displayed
uintptr_t paddr; //!< Physical address
SceDisplayFrameBuf framebuf; //!< SceDisplayFrameBuf information
unsigned int resolution; //!< Resolution
} SceDisplayFrameBufInfo;
/**
* Set/Update framebuffer parameters for display
*
* @param[in] head - Use 0 for OLED/LCD and 1 for HDMI
* @param[in] index - Can be 0 or 1
* @param[in] pParam - Pointer to a ::SceDisplayFrameBuf structure.
* @param[in] sync - One of ::DisplaySetBufSync
*
* @return 0 on success, < 0 on error.
* @note - If NULL is provided as pParam pointer, output is blacked out.
*/
int sceDisplaySetFrameBufInternal(int head, int index, const SceDisplayFrameBuf *pParam, int sync);
/**
* Get the configured framebuffer information of a head and its framebuffer index for a PID
*
* @param[in] pid - PID of the process to get the framebuffer information from.
* It can either be a vallid PID, -1 to use the current configured
* framebuffer for the head and index, or 0 to use the PID of the caller.
* @param[in] head - Use 0 for OLED/LCD and 1 for HDMI
* @param[in] index - Can be 0 or 1
* @param[out] info - Pointer to a ::SceDisplayFrameBufInfo structure
* which will receive the framebuffer information.
*
* @return 0 on success, < 0 on error.
*/
int sceDisplayGetProcFrameBufInternal(SceUID pid, int head, int index, SceDisplayFrameBufInfo *info);
/**
* 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);
/**
* Primary display index
*/
int sceDisplayGetPrimaryHead(void);
/**
* Number of vertical blank pulses up to now for a display
*
* @param[in] display - Display index
*/
int sceDisplayGetVcountInternal(int display);
/**
* Wait for vertical blank start for display
*
* @param[in] display - Display index
*/
int sceDisplayWaitVblankStartInternal(int display);
/**
* Wait for vertical blank start with callback for display
*
* @param[in] display - Display index
*/
int sceDisplayWaitVblankStartCBInternal(int display);
/**
* Wait for vertical blank start after specified number of vertical periods for display
*
* @param[in] display - Display index
* @param[in] vcount - Number of vertical periods before waiting for vertical blank start
*/
int sceDisplayWaitVblankStartMultiInternal(int display, unsigned int vcount);
/**
* Wait for vertical blank start with callback after specified number of vertical periods for display
*
* @param[in] display - Display index
* @param[in] vcount - Number of vertical periods before waiting for vertical blank start
*/
int sceDisplayWaitVblankStartMultiCBInternal(int display, unsigned int vcount);
/**
* Register callback to be used at each vertical blank start for a display
*
* @param[in] display - Display index
* @param[in] uid - Callback UID
*/
int sceDisplayRegisterVblankStartCallbackInternal(int display, SceUID uid);
/**
* Unregister callback used at each vertical blank start for a display
*
* @param[in] display - Display index
* @param[in] uid - Callback UID
*/
int sceDisplayUnregisterVblankStartCallbackInternal(int display, SceUID uid);
/**
* Register callback to be used when the framebuffer changes
*
* @param[in] uid - Callback UID
*/
int sceDisplayRegisterFrameBufCallback(SceUID uid);
/**
* Register callback to be used when the framebuffer changes for a display
*
* @param[in] display - Display index
* @param[in] uid - Callback UID
*/
int sceDisplayRegisterFrameBufCallbackInternal(int display, SceUID uid);
/**
* Enable/disable color inversion for a display.
*
* @param[in] display - Display index
* @param[in] enable - Enable/disable color inversion
*/
int sceDisplaySetInvertColors(int display, int enable);
/**
* Set display plane owner
*
* @param[in] head - Use 0 for OLED/LCD and 1 for HDMI
* @param[in] index - Can be 0 or 1
* @param[in] pid - PID of the new owner
*
* @return 0 on success, < 0 on error.
*/
int sceDisplaySetOwner(int head, int index, SceUID pid);
/**
* Set display scaling configuration
*
* @param[in] scale - Scaling factor between 0.80000001 and 1.20000005
* @param[in] head - Use 0 for OLED/LCD and 1 for HDMI
* @param[in] index - Can be 0 or 1
* @param[in] flags - Returns error if ((flags & 1) && (flags & 0xC0))
*
* @return 0 on success, < 0 on error.
*/
int sceDisplaySetScaleConf(float scale, int head, int index, int flags);
#ifdef __cplusplus
}
#endif
#endif /* _VDSUITE_KERNEL_DISPLAY_H */
|