Refactor internal 'resize' to more apt 'pipeline'

Refactor 'composite' C to C++ 'operations'
This commit is contained in:
Lovell Fuller
2015-06-01 16:33:26 +01:00
parent e2c53b59ce
commit 36be0453dd
11 changed files with 265 additions and 273 deletions

View File

@@ -5,7 +5,7 @@
#include "common.h"
#include "metadata.h"
#include "resize.h"
#include "pipeline.h"
#include "utilities.h"
extern "C" void init(v8::Handle<v8::Object> target) {
@@ -18,7 +18,7 @@ extern "C" void init(v8::Handle<v8::Object> target) {
// Methods available to JavaScript
NODE_SET_METHOD(target, "metadata", metadata);
NODE_SET_METHOD(target, "resize", resize);
NODE_SET_METHOD(target, "pipeline", pipeline);
NODE_SET_METHOD(target, "cache", cache);
NODE_SET_METHOD(target, "concurrency", concurrency);
NODE_SET_METHOD(target, "counters", counters);