PS2SDK
PS2 Homebrew Libraries
graph.h
Go to the documentation of this file.
1 
6 #ifndef __GRAPH_H__
7 #define __GRAPH_H__
8 
9 #include <graph_vram.h>
10 
11 // Sets screen mode
13 #define GRAPH_MODE_AUTO 0
14 
15 #define GRAPH_MODE_NTSC 1
16 
17 #define GRAPH_MODE_PAL 2
18 
19 #define GRAPH_MODE_HDTV_480P 3
20 
21 #define GRAPH_MODE_HDTV_576P 4
22 
23 #define GRAPH_MODE_HDTV_720P 5
24 
25 #define GRAPH_MODE_HDTV_1080I 6
26 
27 #define GRAPH_MODE_VGA_640_60 7
28 
29 #define GRAPH_MODE_VGA_640_72 8
30 
31 #define GRAPH_MODE_VGA_640_75 9
32 
33 #define GRAPH_MODE_VGA_640_85 10
34 
35 #define GRAPH_MODE_VGA_800_56 11
36 
37 #define GRAPH_MODE_VGA_800_60 12
38 
39 #define GRAPH_MODE_VGA_800_72 13
40 
41 #define GRAPH_MODE_VGA_800_75 14
42 
43 #define GRAPH_MODE_VGA_800_85 15
44 
45 #define GRAPH_MODE_VGA_1024_60 16
46 
47 #define GRAPH_MODE_VGA_1024_70 17
48 
49 #define GRAPH_MODE_VGA_1024_75 18
50 
51 #define GRAPH_MODE_VGA_1024_85 19
52 
53 #define GRAPH_MODE_VGA_1280_60 20
54 
55 #define GRAPH_MODE_VGA_1280_75 21
56 
57 #define GRAPH_MODE_NONINTERLACED 0
58 #define GRAPH_MODE_INTERLACED 1
59 
60 #define GRAPH_MODE_FIELD 0
61 #define GRAPH_MODE_FRAME 1
62 
63 #define GRAPH_FIELD_EVEN 0
64 #define GRAPH_FIELD_ODD 1
65 
67 #define GRAPH_DISABLE 0
68 #define GRAPH_ENABLE 1
69 
71 #define GRAPH_GCONT_RGB 0
72 #define GRAPH_GCONT_YCRCB 1
73 
74 #define GRAPH_CMOD_NTSC 2
75 #define GRAPH_CMOD_PAL 3
76 
78 #define GRAPH_VALUE_RC1 0
79 #define GRAPH_VALUE_ALPHA 1
80 
82 #define GRAPH_RC1_ALPHA 0
83 #define GRAPH_RC2_ALPHA 1
84 
86 #define GRAPH_BLEND_RC2 0
87 #define GRAPH_BLEND_BGCOLOR 1
88 
89 #ifdef __cplusplus
90 extern "C" {
91 #endif
92 
94 extern int graph_initialize(int fbp, int width, int height, int psm, int x, int y);
95 
97 extern int graph_get_region(void);
98 
100 extern float graph_aspect_ratio(void);
101 
103 extern void graph_enable_output(void);
104 
106 extern void graph_disable_output(void);
107 
109 extern int graph_set_mode(int interlace, int mode, int ffmd, int flicker_filter);
110 
112 extern int graph_set_screen(int x, int y, int width, int height);
113 
115 extern void graph_set_framebuffer_filtered(int fbp, int width, int psm, int x, int y);
116 
118 extern void graph_set_framebuffer(int context, int fbp, int width, int psm, int x, int y);
119 
121 extern void graph_set_bgcolor(unsigned char r, unsigned char g, unsigned char b);
122 
124 extern void graph_set_output(int rc1, int rc2, int alpha_select, int alpha_output, int blend_method, unsigned char alpha);
125 
127 extern int graph_add_vsync_handler(int (*vsync_callback)(int cause));
128 
130 extern void graph_remove_vsync_handler(int callback_id);
131 
133 extern void graph_wait_hsync(void);
134 
136 extern void graph_wait_vsync(void);
137 
139 extern int graph_check_vsync(void);
140 
142 extern void graph_start_vsync(void);
143 
145 extern int graph_shutdown(void);
146 
158 
159 #ifdef __cplusplus
160 }
161 #endif
162 
163 #endif /* __GRAPH_H__ */
graph_wait_hsync
void graph_wait_hsync(void)
Definition: graph.c:74
graph_wait_vsync
void graph_wait_vsync(void)
Definition: graph.c:99
graph_remove_vsync_handler
void graph_remove_vsync_handler(int callback_id)
Definition: graph.c:46
graph_check_vsync
int graph_check_vsync(void)
Definition: graph.c:85
graph_shutdown
int graph_shutdown(void)
Definition: graph_mode.c:440
graph_get_region
int graph_get_region(void)
Definition: graph_mode.c:123
graph_vram.h
graph_start_vsync
void graph_start_vsync(void)
Definition: graph.c:92
graph_set_framebuffer_filtered
void graph_set_framebuffer_filtered(int fbp, int width, int psm, int x, int y)
Definition: graph_mode.c:277
graph_set_output
void graph_set_output(int rc1, int rc2, int alpha_select, int alpha_output, int blend_method, unsigned char alpha)
Definition: graph_mode.c:313
graph_enable_output
void graph_enable_output(void)
Definition: graph_mode.c:324
graph_aspect_ratio
float graph_aspect_ratio(void)
Definition: graph_mode.c:411
graph_initialize
int graph_initialize(int fbp, int width, int height, int psm, int x, int y)
Definition: graph.c:6
graph_set_framebuffer
void graph_set_framebuffer(int context, int fbp, int width, int psm, int x, int y)
Definition: graph_mode.c:287
graph_set_bgcolor
void graph_set_bgcolor(unsigned char r, unsigned char g, unsigned char b)
Definition: graph_mode.c:306
graph_set_screen
int graph_set_screen(int x, int y, int width, int height)
Definition: graph_mode.c:195
graph_disable_output
void graph_disable_output(void)
Definition: graph_mode.c:342
graph_add_vsync_handler
int graph_add_vsync_handler(int(*vsync_callback)(int cause))
Definition: graph.c:29
graph_set_mode
int graph_set_mode(int interlace, int mode, int ffmd, int flicker_filter)
Definition: graph_mode.c:139