yum-mirror/slang

Making it easier to work with shaders

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

Ellie Hermaszewskaformatf65d756bf

master
374 B20 linesraw
1#ifndef SLANG_DEFLATE_COMPRESSION_SYSTEM_H
2#define SLANG_DEFLATE_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 DeflateCompressionSystem
12{
13public:
14    /* Get the Deflate compression system singleton. */
15    static ICompressionSystem* getSingleton();
16};
17
18} // namespace Slang
19
20#endif