From c42a9faad8d84f7bd05457d5f8e1fe45d6eecfa2 Mon Sep 17 00:00:00 2001 From: Yong He Date: Tue, 8 Oct 2024 13:29:57 -0700 Subject: 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. --- tests/wgsl/texture-sampler-less.slang | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/wgsl/texture-sampler-less.slang') diff --git a/tests/wgsl/texture-sampler-less.slang b/tests/wgsl/texture-sampler-less.slang index 893e867b7..249803526 100644 --- a/tests/wgsl/texture-sampler-less.slang +++ b/tests/wgsl/texture-sampler-less.slang @@ -44,7 +44,7 @@ Sampler2DArray t2DArray_f32v4; SamplerCubeArray tCubeArray_f32v4; __generic -typealias CombinedDepth2d = __TextureImpl< +typealias CombinedDepth2d = _Texture< T, __Shape2D, 0, // isArray @@ -57,7 +57,7 @@ typealias CombinedDepth2d = __TextureImpl< >; __generic -typealias CombinedDepth2d_array = __TextureImpl< +typealias CombinedDepth2d_array = _Texture< T, __Shape2D, 1, // isArray @@ -70,7 +70,7 @@ typealias CombinedDepth2d_array = __TextureImpl< >; __generic -typealias CombinedDepthcube = __TextureImpl< +typealias CombinedDepthcube = _Texture< T, __ShapeCube, 0, // isArray @@ -83,7 +83,7 @@ typealias CombinedDepthcube = __TextureImpl< >; __generic -typealias CombinedDepthcube_array = __TextureImpl< +typealias CombinedDepthcube_array = _Texture< T, __ShapeCube, 1, // isArray -- cgit v1.2.3