nn::dbg::CTR::DirectPrint::PutString Member Function

Syntax

#include <nn/dbg.h>

void PutString(
     const nn::math::VEC2 & pos,
     bool autoLineFeed,
     bool fillBg,
     const char * str
);

Parameters

Name Description
in pos Upper-left coordinate where writing to.
in autoLineFeed Specifies whether to perform automatic text wrapping.
in fillBg Specify true to fill text background with specified background color. Specify false to make transparent.
in str The string to render.

Return Values

None.

Description

Directly outputs the specified string without formatting.

This is the same as Printf, except that the string is not formatted. The process is faster when strings are not formatted, plus there is no limit on the maximum number of characters.


CONFIDENTIAL