yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Sai Praveen BangaruAdded support for differentiating calls to basic functions, as well as arithmetic on the float3 type (#2313)b513d0dee

master
131 B11 linesraw
1//TEST_IGNORE_FILE:
2
3float pow_(float x, float n)
4{
5    return pow(x, n);
6}
7
8float max_(float x, float y)
9{
10    return max(x, y);
11}