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
);

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

List of Overloaded Member Functions

PutString ( const nn::math::VEC2 &, bool, bool, const char * ) Directly outputs the specified string without formatting.
PutString ( const nn::math::VEC2 &, const char * ) Directly outputs the specified string without formatting.

Description of PutString ( const nn::math::VEC2 &, bool, bool, const char * )

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.

Description of PutString ( const nn::math::VEC2 &, const char * )

The version without the autoLineFeed and fillBg arguments. It acts the same as when true is passed.


CONFIDENTIAL