mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-09 21:47:47 +00:00
Add optional access to ptr<>
This also completes the work to resolve the access controls for each storage type. Fixed: tint:846 Change-Id: Iab24057ec14620a2978ec63c4a91ba12d1bc6e9b Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/53381 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: James Price <jrprice@google.com>
This commit is contained in:
committed by
Tint LUCI CQ
parent
3db1820f0b
commit
1858854f7e
@@ -8,6 +8,6 @@ var<storage, read_write> v : S;
|
||||
|
||||
[[stage(compute)]]
|
||||
fn main() {
|
||||
let p : ptr<storage, i32> = &v.a;
|
||||
let p : ptr<storage, i32, read_write> = &v.a;
|
||||
let use : i32 = *p + 1;
|
||||
}
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
OpName %main "main"
|
||||
OpDecorate %S Block
|
||||
OpMemberDecorate %S 0 Offset 0
|
||||
OpDecorate %v NonWritable
|
||||
OpDecorate %v DescriptorSet 0
|
||||
OpDecorate %v Binding 0
|
||||
%int = OpTypeInt 32 1
|
||||
|
||||
Reference in New Issue
Block a user