This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
[Impeller] Fix render pass layout transition when resolve texture has mip levels. #57211
Closed
jonahwilliams
wants to merge
5
commits into
flutter:main
from
jonahwilliams:fix_render_pass_mip_layout
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,8 +24,6 @@ | |
| #include "impeller/renderer/backend/vulkan/sampler_vk.h" | ||
| #include "impeller/renderer/backend/vulkan/shared_object_vk.h" | ||
| #include "impeller/renderer/backend/vulkan/texture_vk.h" | ||
| #include "vulkan/vulkan.hpp" | ||
| #include "vulkan/vulkan_handles.hpp" | ||
|
|
||
| namespace impeller { | ||
|
|
||
|
|
@@ -91,15 +89,8 @@ SharedHandleVK<vk::RenderPass> RenderPassVK::CreateVKRenderPass( | |
| attachment.texture->GetTextureDescriptor().format, // | ||
| attachment.texture->GetTextureDescriptor().sample_count, // | ||
| attachment.load_action, // | ||
| attachment.store_action, // | ||
| TextureVK::Cast(*attachment.texture).GetLayout() // | ||
| attachment.store_action // | ||
| ); | ||
| TextureVK::Cast(*attachment.texture) | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since the render pass is cached and reused, these calls to SetLayoutWithoutEncoding were only running the first time. I moved them into the constructor so they correctly run each time. This could be the cause of other bugs, as it could leave our own book keeping out of sync with the actual image layout. |
||
| .SetLayoutWithoutEncoding(vk::ImageLayout::eGeneral); | ||
| if (attachment.resolve_texture) { | ||
| TextureVK::Cast(*attachment.resolve_texture) | ||
| .SetLayoutWithoutEncoding(vk::ImageLayout::eGeneral); | ||
| } | ||
| return true; | ||
| }); | ||
|
|
||
|
|
@@ -202,6 +193,15 @@ RenderPassVK::RenderPassVK(const std::shared_ptr<const Context>& context, | |
| pass_info.setPClearValues(clears.data()); | ||
| pass_info.setClearValueCount(clear_count); | ||
|
|
||
| if (resolve_image_vk_) { | ||
| TextureVK::Cast(*resolve_image_vk_) | ||
| .SetLayoutWithoutEncoding(vk::ImageLayout::eGeneral); | ||
| } | ||
| if (color_image_vk_) { | ||
| TextureVK::Cast(*color_image_vk_) | ||
| .SetLayoutWithoutEncoding(vk::ImageLayout::eGeneral); | ||
| } | ||
|
|
||
| command_buffer_vk_.beginRenderPass(pass_info, vk::SubpassContents::eInline); | ||
|
|
||
| // Set the initial viewport. | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,6 @@ | |
| #include "impeller/renderer/command_buffer.h" | ||
| #include "impeller/renderer/render_pass.h" | ||
| #include "impeller/renderer/render_target.h" | ||
| #include "vulkan/vulkan_handles.hpp" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Incorrect includes. |
||
|
|
||
| namespace impeller { | ||
|
|
||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorrect includes.