From f743d1226952cbc4411e751987242925e182ee4c Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 23:01:42 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- js/x11/core/examples/smoketest/pixmap.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 js/x11/core/examples/smoketest/pixmap.js diff --git a/js/x11/core/examples/smoketest/pixmap.js b/js/x11/core/examples/smoketest/pixmap.js new file mode 100644 index 0000000..bb09fb3 --- /dev/null +++ b/js/x11/core/examples/smoketest/pixmap.js @@ -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; \ No newline at end of file