File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed
Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ readme = "README.md"
1212resolver = " 2"
1313
1414[dependencies ]
15- wgpu = " 0.11 "
15+ wgpu = " 0.12 "
1616glyph_brush = " 0.7"
1717log = " 0.4"
1818
@@ -21,6 +21,6 @@ version = "1.4"
2121features = [" derive" ]
2222
2323[dev-dependencies ]
24- env_logger = " 0.7 "
25- winit = " 0.24 "
24+ env_logger = " 0.9 "
25+ winit = " 0.26 "
2626futures = " 0.3"
Original file line number Diff line number Diff line change @@ -236,10 +236,7 @@ fn build<D>(
236236 wgpu:: BindGroupLayoutEntry {
237237 binding : 1 ,
238238 visibility : wgpu:: ShaderStages :: FRAGMENT ,
239- ty : wgpu:: BindingType :: Sampler {
240- filtering : true ,
241- comparison : false ,
242- } ,
239+ ty : wgpu:: BindingType :: Sampler ( wgpu:: SamplerBindingType :: Filtering ) ,
243240 count : None ,
244241 } ,
245242 wgpu:: BindGroupLayoutEntry {
@@ -333,6 +330,7 @@ fn build<D>(
333330 write_mask : wgpu:: ColorWrites :: ALL ,
334331 } ] ,
335332 } ) ,
333+ multiview : None ,
336334 } ) ;
337335
338336 Pipeline {
Original file line number Diff line number Diff line change 1- [[block ]]
21struct Globals {
32 transform : mat4x4 <f32 >;
43};
You can’t perform that action at this time.
0 commit comments