diff options
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 |
