From 61e7df3e44a962555e16f1b169f63b07b8246d00 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 24 Dec 2023 00:12:00 +0100 Subject: [PATCH] Improve pixmappresenter example code --- pixmappresenter.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pixmappresenter.d b/pixmappresenter.d index f1b096c..54b8d53 100644 --- a/pixmappresenter.d +++ b/pixmappresenter.d @@ -33,7 +33,7 @@ then jumps back to black and the process repeats. --- - int main() { + void main() { // Internal resolution of the images (“frames”) we will render. // From the PixmapPresenter’s perspective, // these are the “fully-rendered frames” that it will blit to screen. @@ -55,7 +55,7 @@ // Run the eventloop. // The callback delegate will get executed every ~16ms (≙ ~60FPS) and schedule a redraw. - return presenter.eventLoop(16, delegate() { + presenter.eventLoop(16, delegate() { // Update the frame(buffer) here… // Construct an RGB color value. @@ -78,7 +78,7 @@ import arsd.pixmappresenter; import arsd.simpledisplay : MouseEvent; - void main() { + int main() { // Internal resolution of the images (“frames”) we will render. // For further details, check out the previous example. const resolution = Size(240, 120); @@ -110,7 +110,7 @@ // Run the eventloop. // Note how the callback delegate returns a [LoopCtrl] instance. - presenter.eventLoop(delegate() { + return presenter.eventLoop(delegate() { // Determine the start and end index of the current line in the // framebuffer. immutable x0 = line * resolution.width;