MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / print_raw

Function print_raw

core/string/print_string.cpp:309–320  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

307}
308
309void print_raw(const String &p_string) {
310 if (is_printing) {
311 __print_fallback(p_string, true);
312 return;
313 }
314
315 is_printing = true;
316
317 OS::get_singleton()->print("%s", p_string.utf8().get_data());
318
319 is_printing = false;
320}
321
322void print_error(const String &p_string) {
323 if (!CoreGlobals::print_error_enabled) {

Callers 1

printrawMethod · 0.85

Calls 4

__print_fallbackFunction · 0.85
printMethod · 0.45
get_dataMethod · 0.45
utf8Method · 0.45

Tested by

no test coverage detected