File tree Expand file tree Collapse file tree 8 files changed +9
-5
lines changed
Expand file tree Collapse file tree 8 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -22,4 +22,4 @@ profiling = "1.0.6"
2222tracy-client = { version = " 0.15.1" , optional = true }
2323
2424winit = " 0.30.0"
25- wgpu = " 0.20.1 "
25+ wgpu = " 22.0.0 "
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ yakui-app = { path = "../yakui-app" }
1414env_logger = " 0.10.0"
1515log = " 0.4.17"
1616pollster = " 0.3.0"
17- wgpu = { version = " 0.20.1 " , features = [" webgl" ] }
17+ wgpu = { version = " 22.0.0 " , features = [" webgl" ] }
1818winit = " 0.30.0"
1919
2020[target .'cfg(target_arch = "wasm32")' .dependencies ]
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ yakui-wgpu = { path = "../yakui-wgpu" }
1818
1919profiling = { version = " 1.0.6" , optional = true }
2020winit = { version = " 0.30.0" }
21- wgpu = " 0.20.1 "
21+ wgpu = " 22.0.0 "
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ impl Graphics {
6262 } else {
6363 wgpu:: Limits :: default ( )
6464 } ,
65+ memory_hints : Default :: default ( ) ,
6566 label : None ,
6667 } ,
6768 None , // Trace path
Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ edition = "2021"
1111yakui-core = { path = " ../yakui-core" }
1212yakui-wgpu = { path = " ../yakui-wgpu" }
1313
14- wgpu = " 0.20.1 "
14+ wgpu = " 22.0.0 "
1515image = { version = " 0.24.4" , default-features = false , features = [" png" ] }
1616pollster = " 0.3.0"
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ impl Graphics {
2727 & wgpu:: DeviceDescriptor {
2828 required_features : wgpu:: Features :: empty ( ) ,
2929 required_limits : wgpu:: Limits :: default ( ) ,
30+ memory_hints : Default :: default ( ) ,
3031 label : None ,
3132 } ,
3233 None ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ edition = "2021"
1111[dependencies ]
1212yakui-core = { path = " ../yakui-core" , version = " 0.2.0" }
1313
14- wgpu = " 0.20.1 "
14+ wgpu = " 22.0.0 "
1515glam = { version = " 0.27.0" , features = [" bytemuck" ] }
1616bytemuck = { version = " 1.12.1" , features = [" derive" ] }
1717thunderdome = " 0.6.0"
Original file line number Diff line number Diff line change @@ -472,6 +472,7 @@ fn make_main_pipeline(
472472 ..Default :: default ( )
473473 } ,
474474 multiview : None ,
475+ cache : None ,
475476 } )
476477}
477478
@@ -520,5 +521,6 @@ fn make_text_pipeline(
520521 ..Default :: default ( )
521522 } ,
522523 multiview : None ,
524+ cache : None ,
523525 } )
524526}
You can’t perform that action at this time.
0 commit comments