TuttleOFX
1
|
00001 #ifndef _PNGWRITER_DEFINITIONS_HPP_ 00002 #define _PNGWRITER_DEFINITIONS_HPP_ 00003 00004 #include <tuttle/plugin/global.hpp> 00005 #include <tuttle/plugin/context/WriterDefinition.hpp> 00006 00007 namespace tuttle { 00008 namespace plugin { 00009 namespace png { 00010 namespace writer { 00011 00012 enum ETuttlePluginBitDepth 00013 { 00014 eTuttlePluginBitDepth8 = 0, 00015 eTuttlePluginBitDepth16 00016 }; 00017 00018 enum ETuttlePluginComponents 00019 { 00020 eTuttlePluginComponentsAuto = 0, 00021 eTuttlePluginComponentsGray, 00022 eTuttlePluginComponentsRGB, 00023 eTuttlePluginComponentsRGBA 00024 }; 00025 00026 } 00027 } 00028 } 00029 } 00030 00031 #endif