1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Memory pool vectors (DVector) have been enormously simplified in code, and renamed to PoolVector

This commit is contained in:
Juan Linietsky
2017-01-07 18:25:37 -03:00
parent 2a38a5eaa8
commit 2ab83e1abb
257 changed files with 2818 additions and 3130 deletions

View File

@@ -154,7 +154,7 @@ void EditorProfiler::_update_plot() {
}
DVector<uint8_t>::Write wr = graph_image.write();
PoolVector<uint8_t>::Write wr = graph_image.write();
@@ -336,7 +336,7 @@ void EditorProfiler::_update_plot() {
}
wr = DVector<uint8_t>::Write();
wr = PoolVector<uint8_t>::Write();
Image img(w,h,0,Image::FORMAT_RGBA8,graph_image);