yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
11111e573
master
1// extension-import-helper.slang 2 3//TEST_IGNORE_FILE: 4 5public interface IThing 6{ 7 public float getValue(); 8} 9 10public extension float : IThing 11{ 12 public float getValue() { return this; } 13}