TuttleOFX
1
|
00001 #ifndef _TUTTLE_PLUGIN_GAMMA_DEFINITIONS_HPP_ 00002 #define _TUTTLE_PLUGIN_GAMMA_DEFINITIONS_HPP_ 00003 00004 #include <tuttle/plugin/global.hpp> 00005 00006 namespace tuttle { 00007 namespace plugin { 00008 namespace gamma { 00009 static const std::string kMasterValue = "master"; 00010 static const std::string kRedValue = "red"; 00011 static const std::string kGreenValue = "green"; 00012 static const std::string kBlueValue = "blue"; 00013 static const std::string kAlphaValue = "alpha"; 00014 static const std::string kGammaType = "gammaType"; 00015 static const std::string kInvert = "invert"; 00016 00017 static const std::string kGammaGlobal = "Global"; 00018 static const std::string kGammaChannels = "RGBA"; 00019 enum EGammaType 00020 { 00021 eGammaTypeGlobal = 0, 00022 eGammaTypeChannels = 1, 00023 }; 00024 } 00025 } 00026 } 00027 00028 #endif