https://github.com/shader-slang/slang
Raw File
Tip revision: c5c8cfbb360d9a763f549df48636effde839eacd authored by Sai Praveen Bangaru on 27 September 2023, 00:50:13 UTC
Handle the case where the parent if-else region's after-block is unreachable. (#3241)
Tip revision: c5c8cfb
slang-deflate-compression-system.h
#ifndef SLANG_DEFLATE_COMPRESSION_SYSTEM_H
#define SLANG_DEFLATE_COMPRESSION_SYSTEM_H

#include "slang-basic.h"

#include "slang-compression-system.h"

#include "../../slang-com-ptr.h"

namespace Slang
{

class DeflateCompressionSystem
{
public:
    /* Get the Deflate compression system singleton. */
    static ICompressionSystem* getSingleton();
};

}

#endif
back to top