Home
last modified time | relevance | path

Searched refs:autoLineFeed (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-4.2.5/include/nn/dbg/CTR/
Ddbg_DirectPrint.h145 … void Printf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* format, ... );
169 …void VPrintf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* format, va_li…
194 void PutString( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* str );
/CTR-SDK-4.2.5/sources/libraries/dbg/CTR/
Ddbg_DirectPrint.cpp119 void DirectPrint::Printf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* fo… in Printf() argument
123 VPrintf( pos, autoLineFeed, fillBg, format, v ); in Printf()
136 void DirectPrint::VPrintf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* f… in VPrintf() argument
140 PutString( pos, autoLineFeed, fillBg, buf ); in VPrintf()
152 void DirectPrint::PutString( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char*… in PutString() argument
175 … if ( c == '\n' || ( autoLineFeed && str[ offset ] != '\n' && cursor.x + FONT_WIDTH >= boxWidth ) ) in PutString()