9 lines
184 B
JavaScript
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;
|