Skip to content

Commit

Permalink
Revert "WIP bevyengine#5721"
Browse files Browse the repository at this point in the history
This reverts commit f6ef378.
  • Loading branch information
HackerFoo committed Apr 26, 2023
1 parent 0de144f commit 350737e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/bevy_ui/src/render/pipeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl SpecializedRenderPipeline for UiPipeline {
},
depth_stencil: None,
multisample: MultisampleState {
count: 4,
count: 1,
mask: !0,
alpha_to_coverage_enabled: false,
},
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_ui/src/render/render_pass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl Node for UiPassNode {
};
let mut render_pass = render_context.begin_tracked_render_pass(RenderPassDescriptor {
label: Some("ui_pass"),
color_attachments: &[Some(target.get_color_attachment(Operations {
color_attachments: &[Some(target.get_unsampled_color_attachment(Operations {
load: LoadOp::Load,
store: true,
}))],
Expand Down

0 comments on commit 350737e

Please sign in to comment.