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

9 lines
184 B
JavaScript
Raw Normal View History

2025-07-21 23:05:31 +02:00
function Pixmap(depth, width, height, buffer)
{
this.depth = depth;
this.width = width;
this.height = height;
this.data = buffer;
}
module.exports.Pixmap = Pixmap;