mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Variant memory pools
Memory pools via PagedAllocator for Transform2D, Transform3D, Basis and AABB.
This commit is contained in:
parent
1d06fec535
commit
b221eab426
15 changed files with 185 additions and 42 deletions
|
@ -36,6 +36,7 @@
|
|||
#include "../gdscript_parser.h"
|
||||
|
||||
#include "core/config/project_settings.h"
|
||||
#include "core/core_globals.h"
|
||||
#include "core/core_string_names.h"
|
||||
#include "core/io/dir_access.h"
|
||||
#include "core/io/file_access_pack.h"
|
||||
|
@ -142,8 +143,8 @@ GDScriptTestRunner::GDScriptTestRunner(const String &p_source_dir, bool p_init_l
|
|||
#endif
|
||||
|
||||
// Enable printing to show results
|
||||
_print_line_enabled = true;
|
||||
_print_error_enabled = true;
|
||||
CoreGlobals::print_line_enabled = true;
|
||||
CoreGlobals::print_error_enabled = true;
|
||||
}
|
||||
|
||||
GDScriptTestRunner::~GDScriptTestRunner() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue