diff options
| author | Yong He <yonghe@outlook.com> | 2024-10-08 13:29:57 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-08 13:29:57 -0700 |
| commit | c42a9faad8d84f7bd05457d5f8e1fe45d6eecfa2 (patch) | |
| tree | f6b5a249074882755e0232b1c9560118b7ccd6b2 /tests/wgsl/texture-load.slang | |
| parent | 50f44c178de4c614dc45fc48938e6881c0373f6a (diff) | |
Overhaul docgen tool and setup CI to generate stdlib reference. (#5232)
* Overhaul docgen tool and setup CI to generate stdlib reference.
* Fix build error.
* Write parsed doc for all decls.
* fix.
* fix callout.
* Fix.
* Fix comment.
* Fix.
* Delete obsolete doc tests.
* Fix.
* Categorize functions and types.
* Fix CI.
* Update comments.
Diffstat (limited to 'tests/wgsl/texture-load.slang')
| -rw-r--r-- | tests/wgsl/texture-load.slang | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/wgsl/texture-load.slang b/tests/wgsl/texture-load.slang index cc49b8709..3e69ac5cf 100644 --- a/tests/wgsl/texture-load.slang +++ b/tests/wgsl/texture-load.slang @@ -81,7 +81,7 @@ Texture2DArray<uint4> t2DArray_u32v4; // depth __generic<let sampleCount:int=0, let format:int=0> -typealias Depth2D = __TextureImpl< +typealias Depth2D = _Texture< float, __Shape2D, 0, // isArray @@ -94,7 +94,7 @@ typealias Depth2D = __TextureImpl< >; __generic<let sampleCount:int=0, let format:int=0> -typealias Depth2DMS = __TextureImpl< +typealias Depth2DMS = _Texture< float, __Shape2D, 0, // isArray @@ -107,7 +107,7 @@ typealias Depth2DMS = __TextureImpl< >; __generic<let sampleCount:int=0, let format:int=0> -typealias Depth2DArray = __TextureImpl< +typealias Depth2DArray = _Texture< float, __Shape2D, 1, // isArray |
