From c2b6d6d691177aa76052e4e69e00b2056d8a0c15 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 23:05:31 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- js/x11/examples/smoketest/pixmap.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 js/x11/examples/smoketest/pixmap.js diff --git a/js/x11/examples/smoketest/pixmap.js b/js/x11/examples/smoketest/pixmap.js new file mode 100644 index 0000000..bb09fb3 --- /dev/null +++ b/js/x11/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