diff options
| author | skallweitNV <64953474+skallweitNV@users.noreply.github.com> | 2023-01-27 20:53:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-27 11:53:57 -0800 |
| commit | 93a6b6119b6b65c4f6b00ca12d745e21b679c82f (patch) | |
| tree | 53bc1a3360d34ae6d15318eebf07245367387b9d /examples/gpu-printing/kernels.slang | |
| parent | 9f6b6fb9f1bdde8ef01640257544f0e3c9db9076 (diff) | |
Add ASAN support + fixes (#2614)
* Add ASAN support to premake
* Fix StringRepresentation when ASAN is enabled
* Fix deep recursion in slang-generate
* Fix hello-world example
* Fix gpu-printing example
* Linux fix
* Try fixing linux
* Add missing include
Diffstat (limited to 'examples/gpu-printing/kernels.slang')
| -rw-r--r-- | examples/gpu-printing/kernels.slang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gpu-printing/kernels.slang b/examples/gpu-printing/kernels.slang index 8693bfed1..d276510da 100644 --- a/examples/gpu-printing/kernels.slang +++ b/examples/gpu-printing/kernels.slang @@ -34,5 +34,5 @@ void computeMain(uint3 tid : SV_DispatchThreadID) // The second facility supported by `printing.slang` is a C-style // `printf()` function. // - printf("printf from thread 0x%x\n", tid.x); + printf_("printf from thread 0x%x\n", tid.x); } |
