ngryman/ribs

View on GitHub
src/operation/resize.h

Summary

Maintainability
Test Coverage
/*!
 * ribs
 * Copyright (c) 2013-2014 Nicolas Gryman <ngryman@gmail.com>
 * LGPL Licensed
 */

#ifndef __RIBS_OPERATION_RESIZE_H__
#define __RIBS_OPERATION_RESIZE_H__

#include "../operation.h"

namespace ribs {

OPERATION(Resize,
    Image*   image;
    v8::Persistent<v8::Object> imageHandle;
    uint32_t width;
    uint32_t height;
);

}

#endif