https://github.com/shader-slang/slang
Revision 09408e32d7c0ccebf38fe31b5d2ddf4b1cd128e4 authored by Yong He on 14 October 2022, 03:31:30 UTC, committed by GitHub on 14 October 2022, 03:31:30 UTC
* Allow multi-level breaks to break out of `switch` statements.

* Rename loop->region.

* Add `[ForceInline]` attribute.

Co-authored-by: Yong He <yhe@nvidia.com>
1 parent 27d7961
Raw File
Tip revision: 09408e32d7c0ccebf38fe31b5d2ddf4b1cd128e4 authored by Yong He on 14 October 2022, 03:31:30 UTC
Allow multi-level breaks to break out of `switch` statements. (#2451)
Tip revision: 09408e3
make-slang-tag-version.bat
@echo off
:: Generate slang version files 
git describe --tags > slang-tag-version.txt
set /p SLANG_TAG_VERSION=<slang-tag-version.txt
echo #define SLANG_TAG_VERSION "%SLANG_TAG_VERSION%" > slang-tag-version.h
back to top