tahoma2d/toonz/sources/image/sgi/tiio_sgi.h

26 lines
426 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef TIIO_SGI_INCLUDED
#define TIIO_SGI_INCLUDED
#include "tiio.h"
//#include "timage_io.h"
#include "tproperty.h"
2016-06-15 18:43:10 +12:00
namespace Tiio {
2016-03-19 06:57:51 +13:00
Tiio::ReaderMaker makeSgiReader;
Tiio::WriterMaker makeSgiWriter;
class SgiWriterProperties final : public TPropertyGroup {
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
TEnumProperty m_pixelSize;
TBoolProperty m_compressed;
TEnumProperty m_endianess;
SgiWriterProperties();
2016-03-19 06:57:51 +13:00
};
2016-06-15 18:43:10 +12:00
} // namespace
2016-03-19 06:57:51 +13:00
#endif