robert
92cf24fe9f
- Shader building now inspects the spir-v for descriptor sets and writes the info to the output binary
10 lines
176 B
C#
10 lines
176 B
C#
namespace Nerfed.Runtime;
|
|
|
|
public static class StorageContainer
|
|
{
|
|
public static Stream OpenStream(string file)
|
|
{
|
|
return File.Open(file, FileMode.Open);
|
|
}
|
|
}
|