Skip to content

Commit

Permalink
webgpu render pipeline error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seabassjh committed Jun 8, 2023
1 parent 0393b7c commit 7ee68d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render_systems.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ pub fn queue_pipelines_system(
.iter()
.filter_map(|(window_id, window)| {
let key = EguiPipelineKey {
texture_format: window.swap_chain_texture_format?,
texture_format: window.swap_chain_texture_format?.add_srgb_suffix(),
};
let pipeline_id = pipelines.specialize(&pipeline_cache, &egui_pipeline, key);

Expand Down

0 comments on commit 7ee68d3

Please sign in to comment.