yum-mirror/slang

Making it easier to work with shaders

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

Ellie Hermaszewskaformatf65d756bf

master
358 B20 linesraw
1#ifndef SLANG_LZ4_COMPRESSION_SYSTEM_H
2#define SLANG_LZ4_COMPRESSION_SYSTEM_H
3
4#include "slang-basic.h"
5#include "slang-com-ptr.h"
6#include "slang-compression-system.h"
7
8namespace Slang
9{
10
11class LZ4CompressionSystem
12{
13public:
14    /* Get the LZ4 compression system singleton. */
15    static ICompressionSystem* getSingleton();
16};
17
18} // namespace Slang
19
20#endif