WUT  0.1
Wii U Toolchain
screen.h
Go to the documentation of this file.
1 #pragma once
2 #include <wut.h>
3 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 void
15 OSScreenInit();
16 
17 unsigned int
18 OSScreenGetBufferSizeEx(unsigned int bufferNum);
19 
20 int
21 OSScreenSetBufferEx(unsigned int bufferNum, void * addr);
22 
23 int
24 OSScreenClearBufferEx(unsigned int bufferNum,
25  unsigned int temp);
26 
27 int
28 OSScreenFlipBuffersEx(unsigned int bufferNum);
29 
30 int
31 OSScreenPutFontEx(unsigned int bufferNum,
32  unsigned int posX,
33  unsigned int posY,
34  const char * buffer);
35 
36 void
37 OSScreenPutPixelEx(int bufferNum,
38  uint32_t posX,
39  uint32_t posY,
40  uint32_t colour);
41 
42 int
43 OSScreenEnableEx(unsigned int bufferNum,
44  int enable);
45 
46 #ifdef __cplusplus
47 }
48 #endif
49 
int OSScreenPutFontEx(unsigned int bufferNum, unsigned int posX, unsigned int posY, const char *buffer)
void OSScreenInit()
unsigned int OSScreenGetBufferSizeEx(unsigned int bufferNum)
int OSScreenEnableEx(unsigned int bufferNum, int enable)
int OSScreenSetBufferEx(unsigned int bufferNum, void *addr)
int OSScreenClearBufferEx(unsigned int bufferNum, unsigned int temp)
int OSScreenFlipBuffersEx(unsigned int bufferNum)
void OSScreenPutPixelEx(int bufferNum, uint32_t posX, uint32_t posY, uint32_t colour)