TuttleOFX  1
TuttleOFX/libraries/tuttle/src/tuttle/plugin/context/ReaderDefinition.hpp
Go to the documentation of this file.
00001 #ifndef _TUTTLE_PLUGIN_CONTEXT_READERDEFINITION_HPP_
00002 #define _TUTTLE_PLUGIN_CONTEXT_READERDEFINITION_HPP_
00003 
00004 #include "Definition.hpp"
00005 
00006 namespace tuttle {
00007 namespace plugin {
00008 
00009 enum EParamReaderBitDepth
00010 {
00011         eParamReaderBitDepthAuto = 0,
00012         eParamReaderBitDepthByte,
00013         eParamReaderBitDepthShort,
00014         eParamReaderBitDepthFloat
00015 };
00016 
00017 enum EParamReaderChannel
00018 {
00019         eParamReaderChannelAuto = 0,
00020         eParamReaderChannelGray,
00021         eParamReaderChannelRGB,
00022         eParamReaderChannelRGBA
00023 };
00024 
00025 }
00026 }
00027 
00028 #endif
00029