yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
f65d756bf
master
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. */ 15static ICompressionSystem * getSingleton (); 16}; 17 18}// namespace Slang 19 20#endif