Update wgpu to 23.0

This commit is contained in:
Héctor Ramón Jiménez 2024-11-05 13:32:14 +01:00
parent 50340b4b43
commit ebc4e17ba8
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
9 changed files with 22 additions and 22 deletions

View file

@ -72,13 +72,13 @@ fn build_pipeline(
layout: Some(&pipeline_layout),
vertex: wgpu::VertexState {
module: &vs_module,
entry_point: "main",
entry_point: Some("main"),
buffers: &[],
compilation_options: wgpu::PipelineCompilationOptions::default(),
},
fragment: Some(wgpu::FragmentState {
module: &fs_module,
entry_point: "main",
entry_point: Some("main"),
targets: &[Some(wgpu::ColorTargetState {
format: texture_format,
blend: Some(wgpu::BlendState {