Mon 21 Jul 22:43:21 CEST 2025
This commit is contained in:
parent
160f495a03
commit
c2b6d6d691
9
js/x11/examples/smoketest/pixmap.js
Normal file
9
js/x11/examples/smoketest/pixmap.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
function Pixmap(depth, width, height, buffer)
|
||||
{
|
||||
this.depth = depth;
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
this.data = buffer;
|
||||
}
|
||||
|
||||
module.exports.Pixmap = Pixmap;
|
Loading…
Reference in New Issue
Block a user