mirror of
https://github.com/danbulant/node-x11
synced 2026-05-19 20:39:03 +00:00
9 lines
No EOL
184 B
JavaScript
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; |