Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Prev Previous commit
Next Next commit
++
  • Loading branch information
jonahwilliams committed Aug 14, 2023
commit 88e9d876c38ba6b479ca4b6ecad5e455c76818ee
2 changes: 1 addition & 1 deletion impeller/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ impeller_component("impeller_unittests") {
"base:base_unittests",
"blobcat:blobcat_unittests",
"compiler:compiler_unittests",
"core:allocator_unittests",
"display_list:skia_conversions_unittests",
"geometry:geometry_unittests",
"runtime_stage:runtime_stage_unittests",
"scene/importer:importer_unittests",
"tessellator:tessellator_unittests",
"core:allocator_unittests",
]

if (impeller_supports_rendering) {
Expand Down
3 changes: 1 addition & 2 deletions impeller/core/allocator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ void Allocator::DidFinishSurfaceFrame() {
}
}
data_to_recycle_.clear();
data_to_recycle_.insert(data_to_recycle_.end(), retain.begin(),
retain.end());
data_to_recycle_.insert(data_to_recycle_.end(), retain.begin(), retain.end());
}

void Allocator::SetEnableRenderTargetTextureCache(bool value) {
Expand Down