Add arsd.pixelpresenter

This commit is contained in:
Elias Batek 2023-12-16 04:31:51 +01:00
parent 5d626d3358
commit 7266c4883a
2 changed files with 25 additions and 0 deletions

View File

@ -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",

12
pixelpresenter.d Normal file
View File

@ -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;