Add 'none' to 'demosaic methods' in GUI, see Issue 2247 comment #2 for details

This commit is contained in:
Ingo
2014-05-16 00:13:20 +02:00
parent a906342b30
commit 51151bc210
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ using namespace std;
namespace rtengine {
namespace procparams {
const char *RAWParams::methodstring[RAWParams::numMethods]={"amaze","igv","lmmse","eahd", "hphd", "vng4", "dcb", "ahd", "fast" };
const char *RAWParams::methodstring[RAWParams::numMethods]={"amaze","igv","lmmse","eahd", "hphd", "vng4", "dcb", "ahd", "fast", "none" };
const char *RAWParams::ff_BlurTypestring[RAWParams::numFlatFileBlurTypes]={/*"Parametric",*/ "Area Flatfield", "Vertical Flatfield", "Horizontal Flatfield", "V+H Flatfield"};
std::vector<WBEntry*> WBParams::wbEntries;

View File

@@ -778,7 +778,7 @@ class RAWParams {
public:
// enum eMethod{eahd,hphd,vng4,dcb,amaze,ahd,IGV_noise,fast,
// numMethods }; // This MUST be the last enum
enum eMethod{amaze,igv,lmmse,eahd,hphd,vng4,dcb,ahd,fast,
enum eMethod{amaze,igv,lmmse,eahd,hphd,vng4,dcb,ahd,fast,none,
numMethods }; // This MUST be the last enum
static const char *methodstring[numMethods];