Line 167:
Line 167:
!Prototype
!Prototype
!Description
!Description
+
|-
+
|OSScreenInit
+
|void OSScreenInit(void)
+
|This is the main initialization function, this must be called before any of the other OSScreen functions. This includes register writes which will enable framebuffer display, via the same bit OSScreenEnableEx() uses.
+
|-
+
|OSScreenShutdown
+
|void OSScreenShutdown(void);
+
|This just does the following two function calls: "OSScreenEnableEx(0, 0)" and "OSScreenEnableEx(1, 0)".
+
|-
+
|OSScreenEnableEx
+
|void OSScreenEnableEx(int bufferNum, bool flag)
+
|flag0: disable framebuffer display(solid-black is displayed instead). flag1: enable framebuffer display. There's no need to call this right after OSScreenInit() for enabling framebuf display, see above.
|-
|-
|OSScreenGetBufferSizeEx
|OSScreenGetBufferSizeEx