yum-mirror/slang

Making it easier to work with shaders

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

Ellie Hermaszewskaformatf65d756bf

master
409 B20 linesraw
1#ifndef SLANG_ZIP_FILE_SYSTEM_H
2#define SLANG_ZIP_FILE_SYSTEM_H
3
4#include "slang-archive-file-system.h"
5#include "slang-basic.h"
6
7namespace Slang
8{
9
10struct ZipFileSystem
11{
12    /// Create an empty zip
13    static SlangResult create(ComPtr<ISlangMutableFileSystem>& out);
14    /// True if this appears to be a zip archive
15    static bool isArchive(const void* data, size_t size);
16};
17
18} // namespace Slang
19
20#endif