homebrewfilter/nand-loader/source/video.h

21 lines
408 B
C
Raw Normal View History

2012-12-08 20:53:27 +01:00
#ifndef _VIDEO_H_
#define _VIDEO_H_
2012-12-08 21:26:37 +01:00
#include "pngu.h"
2012-12-08 20:53:27 +01:00
/* Prototypes */
void Con_Init(u32, u32, u32, u32);
void Con_Destroy(void);
void Con_Clear(void);
void Con_ClearLine(void);
void Con_FgColor(u32, u8);
void Con_BgColor(u32, u8);
void Con_FillRow(u32, u32, u8);
void Video_Configure(GXRModeObj *);
void Video_SetMode(void);
void Video_Clear(s32);
void Video_DrawPng(IMGCTX, PNGUPROP, u16, u16);
#endif