You've already forked godot
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:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user