File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
crates/rustc_codegen_spirv/src Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
30
## [ Unreleased]
31
31
32
32
### Changed 🛠
33
+ - [ PR #1118 ] ( https://github.com/EmbarkStudios/rust-gpu/pull/1118 ) update rspirv to 0.12
34
+ - ` bary_coord_nv ` /` bary_coord_no_persp_nv ` have their ` _nv ` suffix omitted
33
35
- [ PR #1127 ] ( https://github.com/EmbarkStudios/rust-gpu/pull/1127 ) updated ` spirv-tools ` to ` 0.10.0 ` , which follows ` vulkan-sdk-1.3.275 `
34
36
- [ PR #1101 ] ( https://github.com/EmbarkStudios/rust-gpu/pull/1101 ) added ` ignore ` and ` no_run ` to documentation to make ` cargo test ` pass
35
37
- [ PR #1112 ] ( https://github.com/EmbarkStudios/rust-gpu/pull/1112 ) updated wgpu and winit in example runners
Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ const BUILTINS: &[(&str, BuiltIn)] = {
118
118
( "layer_per_view_nv" , LayerPerViewNV ) ,
119
119
( "mesh_view_count_nv" , MeshViewCountNV ) ,
120
120
( "mesh_view_indices_nv" , MeshViewIndicesNV ) ,
121
- ( "bary_coord_nv " , BaryCoordNV ) ,
122
- ( "bary_coord_no_persp_nv " , BaryCoordNoPerspNV ) ,
121
+ ( "bary_coord " , BaryCoordKHR ) ,
122
+ ( "bary_coord_no_persp " , BaryCoordNoPerspKHR ) ,
123
123
( "frag_size_ext" , FragSizeEXT ) ,
124
124
( "frag_invocation_count_ext" , FragInvocationCountEXT ) ,
125
125
( "launch_id" , BuiltIn :: LaunchIdKHR ) ,
You can’t perform that action at this time.
0 commit comments