Mon 21 Jul 22:43:21 CEST 2025
This commit is contained in:
parent
517b7a4054
commit
f743d12269
9
js/x11/core/examples/smoketest/pixmap.js
Normal file
9
js/x11/core/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