20 #ifndef PRESSION_DOWNLOADER_H 21 #define PRESSION_DOWNLOADER_H 24 #include <pression/types.h> 25 #include <lunchbox/thread.h> 29 namespace detail {
class Downloader; }
47 PRESSION_API Downloader(
PluginRegistry& from,
const uint32_t name,
48 const GLEWContext* gl = 0 );
51 PRESSION_API
virtual ~Downloader();
54 PRESSION_API
bool isGood()
const;
60 PRESSION_API
bool uses(
const uint32_t name )
const;
66 PRESSION_API
bool supports(
const uint32_t inputToken,
const bool noAlpha,
67 const uint64_t capabilities )
const;
86 const uint32_t internalFormat,
87 const float minQuality,
88 const bool ignoreAlpha,
89 const uint64_t capabilities,
90 const GLEWContext* gl );
105 PRESSION_API
bool setup(
PluginRegistry& from,
const uint32_t name,
106 const GLEWContext* gl = 0 );
113 PRESSION_API
bool setup(
PluginRegistry& from,
const uint32_t internalFormat,
114 const float minQuality,
const bool ignoreAlpha,
115 const uint64_t capabilities,
116 const GLEWContext* gl );
119 PRESSION_API
void clear();
134 PRESSION_API
bool start(
void** buffer,
const uint64_t inDims[4],
135 const uint64_t flags, uint64_t outDims[4],
136 const unsigned source,
const GLEWContext* gl );
148 PRESSION_API
void finish(
void** buffer,
const uint64_t inDims[4],
149 const uint64_t flags, uint64_t outDims[4],
150 const GLEWContext* gl );
153 Downloader(
const Downloader& );
154 Downloader operator=(
const Downloader& );
155 detail::Downloader*
const impl_;
156 LB_TS_VAR( _thread );
159 #endif // PRESSION_DOWNLOADER_H Defines export visibility macros for library Pression.
A C++ class to handle one downloader plugin instance.
Information about one compressor.
A registry for loaded plugins.