diff options
| author | Yong He <yonghe@outlook.com> | 2024-12-05 19:33:55 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-06 03:33:55 +0000 |
| commit | 7dabfa76ccfb396e9d2019e2b6e01259d1661dc5 (patch) | |
| tree | 8f9a39b9d25d04051d02e63450f66c852d744e62 /tests/preprocessor | |
| parent | ecc5a39feecbf73feedf352214406c8752af798a (diff) | |
Implement explciit binding for metal and wgsl. (#5778)
* Respect explicit bindings in wgsl emit.
* Implement explciit binding generation for metal and wgsl.
* Update toc.
* Fix warnings in tests.
* Fix tests.
---------
Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
Diffstat (limited to 'tests/preprocessor')
| -rw-r--r-- | tests/preprocessor/line-macro.slang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/preprocessor/line-macro.slang b/tests/preprocessor/line-macro.slang index 2b035357a..609d6cf5a 100644 --- a/tests/preprocessor/line-macro.slang +++ b/tests/preprocessor/line-macro.slang @@ -1,7 +1,7 @@ //TEST:COMPARE_COMPUTE(filecheck-buffer=CHECK): -output-using-type //TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):out,name=outputBuffer -RWStructuredBuffer<int> outputBuffer : register(u0); +RWStructuredBuffer<int> outputBuffer; #define T(x) x #define LL T(__LINE__) |
