node-x11/examples/smoketest/pixmap.js
2012-05-31 12:31:49 +10:00

9 lines
No EOL
184 B
JavaScript

function Pixmap(depth, width, height, buffer)
{
this.depth = depth;
this.width = width;
this.height = height;
this.data = buffer;
}
module.exports.Pixmap = Pixmap;