Rebrand PixelPresenter to PixmapPresenter

This commit is contained in:
Elias Batek 2023-12-24 00:09:21 +01:00
parent d57ecc9cb9
commit f9e029b9cd
4 changed files with 16 additions and 16 deletions

View File

@ -22,7 +22,7 @@ Future release, likely May 2024 or later.
Nothing is planned for it at this time.
arsd.pixelpresenter was added.
arsd.pixmappresenter was added.
## 11.0

View File

@ -682,17 +682,17 @@
}
},
{
"name": "pixelpresenter",
"name": "pixmappresenter",
"description": "High-level display library. Designed to blit fully-rendered frames to the screen.",
"targetType": "library",
"sourceFiles": ["pixelpresenter.d"],
"sourceFiles": ["pixmappresenter.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"]
"dflags-dmd": ["-mv=arsd.pixmappresenter=$PACKAGE_DIR/pixmappresenter.d"],
"dflags-ldc": ["--mv=arsd.pixmappresenter=$PACKAGE_DIR/pixmappresenter.d"],
"dflags-gdc": ["-fmodule-file=arsd.pixmappresenter=$PACKAGE_DIR/pixmappresenter.d"]
},
{
"name": "ttf",

View File

@ -86,7 +86,7 @@
$(H4 $(ID desktop-game) Games)
See [arsd.simpledisplay] and [arsd.gamehelpers].
Check out [arsd.pixelpresenter] for old-skool games that blit fully-rendered frames to the screen.
Check out [arsd.pixmappresenter] for old-skool games that blit fully-rendered frames to the screen.
$(H4 $(ID desktop-gui) GUIs)
See [arsd.minigui], [arsd.nanovega], and also: https://github.com/drug007/nanogui

View File

@ -1,10 +1,10 @@
/+
== pixelpresenter ==
== pixmappresenter ==
Copyright Elias Batek (0xEAB) 2023.
Distributed under the Boost Software License, Version 1.0.
+/
/++
$(B Pixel Presenter) is a high-level display library for one specific scenario:
$(B Pixmap Presenter) is a high-level display library for one specific scenario:
Blitting fully-rendered frames to the screen.
This is useful for software-rendered applications.
@ -35,7 +35,7 @@
---
int main() {
// Internal resolution of the images (“frames”) we will render.
// From the PixelPresenters perspective,
// From the PixmapPresenters perspective,
// these are the “fully-rendered frames” that it will blit to screen.
// They may be up- & down-scaled to the windows actual size
// (according to the chosen scaling mode) by the presenter.
@ -44,7 +44,7 @@
// Lets create a new presenter.
// (For more fine-grained control theres also a constructor overload that
// accepts a [PresenterConfig] instance).
auto presenter = new PixelPresenter(
auto presenter = new PixmapPresenter(
"Demo", // window title
resolution, // internal resolution
Size(960, 480), // initial window size (optional; default: =resolution)
@ -75,7 +75,7 @@
### Advanced example
---
import arsd.pixelpresenter;
import arsd.pixmappresenter;
import arsd.simpledisplay : MouseEvent;
void main() {
@ -99,7 +99,7 @@
cfg.renderer.background = ColorF(Pixel.white);
// Lets instantiate a new presenter with the previously created config.
auto presenter = new PixelPresenter(cfg);
auto presenter = new PixmapPresenter(cfg);
// Start with a green frame, so we can easily observe whats going on.
presenter.framebuffer.clear(rgb(0x00, 0xDD, 0x00));
@ -144,7 +144,7 @@
}
---
+/
module arsd.pixelpresenter;
module arsd.pixmappresenter;
import arsd.color;
import arsd.simpledisplay;
@ -414,7 +414,7 @@ struct PresenterConfig {
///
static struct Window {
string title = "ARSD Pixel Presenter";
string title = "ARSD Pixmap Presenter";
Size size;
}
}
@ -737,7 +737,7 @@ struct LoopCtrl {
/++
+/
final class PixelPresenter {
final class PixmapPresenter {
private {
PresenterObjects* _pro;