Doc refresh, changelog and dead code removal for #977

This commit is contained in:
Lovell Fuller
2017-10-10 20:16:38 +01:00
parent d0f66c3734
commit 3c88c84998
9 changed files with 51 additions and 155 deletions

View File

@@ -1140,7 +1140,6 @@ NAN_METHOD(pipeline) {
baton->withoutEnlargement = AttrTo<bool>(options, "withoutEnlargement");
baton->crop = AttrTo<int32_t>(options, "crop");
baton->kernel = AttrAsStr(options, "kernel");
baton->interpolator = AttrAsStr(options, "interpolator");
baton->centreSampling = AttrTo<bool>(options, "centreSampling");
baton->fastShrinkOnLoad = AttrTo<bool>(options, "fastShrinkOnLoad");
// Join Channel Options

View File

@@ -67,7 +67,6 @@ struct PipelineBaton {
int cropOffsetTop;
bool premultiplied;
std::string kernel;
std::string interpolator;
bool centreSampling;
bool fastShrinkOnLoad;
double background[4];