https://github.com/shader-slang/slang
Revision 64804ce0bec66a428f8784b5deb139535909c242 authored by Yong He on 25 January 2024, 22:54:46 UTC, committed by GitHub on 25 January 2024, 22:54:46 UTC
* Fix spirv legalization generating duplicate array types.

* Fix intrinsics.

* Update CI build config.

---------

Co-authored-by: Yong He <yhe@nvidia.com>
1 parent 7ae8f68
Raw File
Tip revision: 64804ce0bec66a428f8784b5deb139535909c242 authored by Yong He on 25 January 2024, 22:54:46 UTC
Fix spirv legalization generating duplicate array types. (#3517)
Tip revision: 64804ce
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