yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
f65d756bf
master
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 13static SlangResult create (ComPtr < ISlangMutableFileSystem >& out ); 14/// True if this appears to be a zip archive 15static bool isArchive (const void * data ,size_t size ); 16}; 17 18}// namespace Slang 19 20#endif