diff options
| author | Yong He <yonghe@outlook.com> | 2025-07-29 07:35:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-29 14:35:58 +0000 |
| commit | 855b1a262f3a769d44765e78f94e566d875b9286 (patch) | |
| tree | ea41db3717f55aa5032b1f04d71729a452ec68b2 /tools | |
| parent | ea6f8551ad38f2bcc32b542fd52ce17f3829cbeb (diff) | |
[Language Server]: Show signature help on generic parameters. (#7913)
* Show signature help on generic parameters.
* Fix.
* Update tests.
* slang-test: make vvl error go through stderr.
* update slang-rhi
* Update slang-rhi
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/gfx-unit-test/gfx-test-util.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/gfx-unit-test/gfx-test-util.cpp b/tools/gfx-unit-test/gfx-test-util.cpp index 4072b9814..b5a39a4f0 100644 --- a/tools/gfx-unit-test/gfx-test-util.cpp +++ b/tools/gfx-unit-test/gfx-test-util.cpp @@ -27,8 +27,13 @@ public: static const char* kSourceStrings[] = {"Layer", "Driver", "Slang"}; if (type == rhi::DebugMessageType::Error) { - printf("[%s] (%s) %s\n", kTypeStrings[int(type)], kSourceStrings[int(source)], message); - fflush(stdout); + fprintf( + stderr, + "[%s] (%s) %s\n", + kTypeStrings[int(type)], + kSourceStrings[int(source)], + message); + fflush(stderr); } } static DebugPrinter* getInstance() |
