hwtests/source/output.h

24 lines
480 B
C
Raw Normal View History

#pragma once
2014-10-26 18:47:14 -07:00
#include <string>
2014-10-26 18:47:14 -07:00
#include <3ds.h>
void InitOutput();
void DrawBuffers();
/// Prints `text` to `screen`.
void Print(gfxScreen_t screen, const std::string& text);
/// Prints `text` to `screen`, and logs it in the log file.
void Log(gfxScreen_t screen, const std::string& text);
/// Logs `text` to the log file.
void LogToFile(const std::string& text);
void ClearScreen(gfxScreen_t screen, u8 bg_r, u8 bg_g, u8 bg_b);
void ClearScreens();
void DeinitOutput();