Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Shader warmup #37662

Merged
merged 1 commit into from
Nov 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shell/platform/fuchsia/flutter/vulkan_surface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ VulkanSurface::~VulkanSurface() {
if (buffer_id_) {
session_->DeregisterBufferCollection(buffer_id_);
}
} else {
} else if (release_image_callback_) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change lgtm. But we should clean up the other files from the pull request.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rebased change onto main, now there's only 1 line changed in 1 file.

release_image_callback_();
}
wait_.Cancel();
Expand Down