From 7266c4883ab3ef1787a3e9f9c83e186e532f786e Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 16 Dec 2023 04:31:51 +0100 Subject: [PATCH] Add arsd.pixelpresenter --- dub.json | 13 +++++++++++++ pixelpresenter.d | 12 ++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 pixelpresenter.d diff --git a/dub.json b/dub.json index 8a5f3c0..e402217 100644 --- a/dub.json +++ b/dub.json @@ -681,6 +681,19 @@ "arsd-official:color_base":"*" } }, + { + "name": "pixelpresenter", + "description": "Pixel display", + "targetType": "library", + "sourceFiles": ["pixelpresenter.d"], + "dependencies": { + "arsd-official:color_base":"*", + "arsd-official:simpledisplay":"*" + }, + "dflags-dmd": ["-mv=arsd.pixelpresenter=$PACKAGE_DIR/pixelpresenter.d"], + "dflags-ldc": ["--mv=arsd.pixelpresenter=$PACKAGE_DIR/pixelpresenter.d"], + "dflags-gdc": ["-fmodule-file=arsd.pixelpresenter=$PACKAGE_DIR/pixelpresenter.d"] + }, { "name": "ttf", "description": "port of stb_ttf to D", diff --git a/pixelpresenter.d b/pixelpresenter.d new file mode 100644 index 0000000..dc47945 --- /dev/null +++ b/pixelpresenter.d @@ -0,0 +1,12 @@ +/+ + == pixelpresenter == + Copyright Elias Batek (0xEAB) 2023. + Distributed under the Boost Software License, Version 1.0. + +/ +/++ + # Pixel Presenter + +/ +module arsd.pixelpresenter; + +import arsd.color; +import arsd.simpledisplay;