https://github.com/shader-slang/slang
Revision 0ef7aa85d3a6b2ff1d6b25576b4d9eff188c1a6a authored by Yong He on 21 February 2023, 20:51:46 UTC, committed by GitHub on 21 February 2023, 20:51:46 UTC
* Modify control-flow test case

* Update reverse-control-flow-3.slang

* Fix `transposeCall`.

* Fix.

---------

Co-authored-by: Sai Praveen Bangaru <31557731+saipraveenb25@users.noreply.github.com>
Co-authored-by: Yong He <yhe@nvidia.com>
1 parent 6bca0ec
Raw File
Tip revision: 0ef7aa85d3a6b2ff1d6b25576b4d9eff188c1a6a authored by Yong He on 21 February 2023, 20:51:46 UTC
Fix transposeCall. (#2669)
Tip revision: 0ef7aa8
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