jam/js/x11/core/examples/smoketest/pixmap.js

9 lines
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;