https://github.com/shader-slang/slang
Raw File
Tip revision: 6e4eae1050ab9282b460a33a013652c387c1e585 authored by Yong He on 24 March 2023, 00:16:32 UTC
Hack handling of primal insts that has a function type. (#2728)
Tip revision: 6e4eae1
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