Upgrade to wgpu v23.

This commit is contained in:
dtzxporter 2024-10-30 11:59:19 -04:00 committed by Josh Groves
parent 0115197751
commit f1f50ab7b1
2 changed files with 6 additions and 6 deletions

View file

@ -221,13 +221,13 @@ impl Cache {
layout: Some(pipeline_layout),
vertex: VertexState {
module: shader,
entry_point: "vs_main",
entry_point: Some("vs_main"),
buffers: vertex_buffers,
compilation_options: PipelineCompilationOptions::default(),
},
fragment: Some(FragmentState {
module: shader,
entry_point: "fs_main",
entry_point: Some("fs_main"),
targets: &[Some(ColorTargetState {
format,
blend: Some(BlendState::ALPHA_BLENDING),