mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-18 17:35:30 +00:00
Remove depreated APIs and WGSL
WGSL: * Remove vertex_idx and instance_idx. These are now vertex_index and instance_index. It seems this was removed once before, then reverted due to CTS failures, but the original change never landed again. * Remove the [[set(n)]] decoration. This has been [[group(n)]] for months now. API: * Remove deprecated enums from transform::VertexFormat. * Remove transform::Renamer constructor that takes a Config. This should be passed by DataMap. * Remove ast::AccessControl alias to ast::Access. Change-Id: I988c96c4269b02a5d77163409f261fd5923188e0 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/56541 Commit-Queue: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: James Price <jrprice@google.com>
This commit is contained in:
committed by
Tint LUCI CQ
parent
692fc20797
commit
9545fb76b6
@@ -59,7 +59,7 @@ class Pointer : public Castable<Pointer, Type> {
|
||||
private:
|
||||
Type const* const subtype_;
|
||||
ast::StorageClass const storage_class_;
|
||||
ast::AccessControl const access_;
|
||||
ast::Access const access_;
|
||||
};
|
||||
|
||||
} // namespace sem
|
||||
|
||||
@@ -59,7 +59,7 @@ class Reference : public Castable<Reference, Type> {
|
||||
private:
|
||||
Type const* const subtype_;
|
||||
ast::StorageClass const storage_class_;
|
||||
ast::AccessControl const access_;
|
||||
ast::Access const access_;
|
||||
};
|
||||
|
||||
} // namespace sem
|
||||
|
||||
Reference in New Issue
Block a user