https://github.com/shader-slang/slang
Revision 1f4c7cab13341c2e9d48df2b01ed2c048c17c152 authored by Yong He on 26 January 2023, 01:27:40 UTC, committed by GitHub on 26 January 2023, 01:27:40 UTC
* Unify UpdateField and UpdateElement with access chain.

* Fix warnings.

Co-authored-by: Yong He <yhe@nvidia.com>
1 parent aa6814b
Raw File
Tip revision: 1f4c7cab13341c2e9d48df2b01ed2c048c17c152 authored by Yong He on 26 January 2023, 01:27:40 UTC
Unify UpdateField and UpdateElement with access chain. (#2611)
Tip revision: 1f4c7ca
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