-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
renderer.h
28 lines (25 loc) · 1.58 KB
/
renderer.h
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
/*
* This File is Part Of :
* ___ ___ ___ ___ ___ ___
* / /\ ___ /__/\ / /\ /__/\ / /\ / /\ ___
* / /::\ / /\ \ \:\ / /:/ \ \:\ / /:/_ / /::\ / /\
* / /:/\:\ / /:/ \ \:\ / /:/ \__\:\ / /:/ /\ / /:/\:\ / /:/
* / /:/~/:/ /__/::\ _____\__\:\ / /:/ ___ ___ / /::\ / /:/ /:/_ / /:/~/::\ / /:/
* /__/:/ /:/___ \__\/\:\__ /__/::::::::\ /__/:/ / /\ /__/\ /:/\:\ /__/:/ /:/ /\ /__/:/ /:/\:\ / /::\
* \ \:\/:::::/ \ \:\/\ \ \:\~~\~~\/ \ \:\ / /:/ \ \:\/:/__\/ \ \:\/:/ /:/ \ \:\/:/__\/ /__/:/\:\
* \ \::/~~~~ \__\::/ \ \:\ ~~~ \ \:\ /:/ \ \::/ \ \::/ /:/ \ \::/ \__\/ \:\
* \ \:\ /__/:/ \ \:\ \ \:\/:/ \ \:\ \ \:\/:/ \ \:\ \ \:\
* \ \:\ \__\/ \ \:\ \ \::/ \ \:\ \ \::/ \ \:\ \__\/
* \__\/ \__\/ \__\/ \__\/ \__\/ \__\/
*
* Copyright (c) Rinnegatamante <[email protected]>
*
*/
#ifndef _RENDERER_H_
#define _RENDERER_H_
void updateFramebuf(const SceDisplayFrameBuf *param);
void drawCharacter(int character, int x, int y);
void drawString(int x, int y, const char *str);
void drawStringF(int x, int y, const char *format, ...);
void setTextColor(uint32_t clr);
#endif