yum-mirror/slang

Making it easier to work with shaders

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

Yong HeSupport visibility control and default to `internal`. (#3380)11111e573

master
188 B13 linesraw
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}