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;