mirror of https://github.com/adamdruppe/arsd.git
Add arsd.pixelpresenter
This commit is contained in:
parent
5d626d3358
commit
7266c4883a
13
dub.json
13
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",
|
||||
|
|
|
@ -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;
|
Loading…
Reference in New Issue