nn::dbg::CTR::DirectPrint::Printf Member Function#include <nn/dbg.h>
void Printf(
const nn::math::VEC2 & pos,
bool autoLineFeed,
bool fillBg,
const char * format,
...
);
void Printf(
const nn::math::VEC2 & pos,
const char * format,
...
);
| Printf ( const nn::math::VEC2 &, bool, bool, const char *, ... ) | Formats strings and writes them to the display buffer. |
| Printf ( const nn::math::VEC2 &, const char *, ... ) | Formats strings and writes them to the display buffer. |
Printf ( const nn::math::VEC2 &, bool, bool, const char *, ... )For pos, specify the value in a coordinate system where (0, 0) is the upper-left point of the display region specified by ChangeDisplaybuffer.
When autoLineFeed is set to true, text will wrap when it reaches the edge of the display region.
The post-formatted string must fit within 255 characters.
Printf ( const nn::math::VEC2 &, const char *, ... )The version without the autoLineFeed and fillBg arguments. It acts the same as when true is passed.
CONFIDENTIAL