From a9a9d75988dc20954b242ecbfe716010f5506ba4 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 22 Sep 2024 14:32:20 -0400 Subject: [PATCH] mac safer by default --- simpledisplay.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simpledisplay.d b/simpledisplay.d index 2cb7a41..1816264 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -18582,7 +18582,7 @@ version(OSXCocoa) { final: - void convertToRgbaBytes(ubyte[] where) { + void convertToRgbaBytes(ubyte[] where) @system { assert(where.length == this.width * this.height * 4); // if rawData had a length.... @@ -18604,7 +18604,7 @@ version(OSXCocoa) { } } - void setFromRgbaBytes(in ubyte[] where) { + void setFromRgbaBytes(in ubyte[] where) @system { // FIXME: this is probably wrong assert(where.length == this.width * this.height * 4); @@ -18642,7 +18642,7 @@ version(OSXCocoa) { CGContextRelease(context); } - void setPixel(int x, int y, Color c) { + void setPixel(int x, int y, Color c) @system { auto offset = (y * width + x) * 4; if (c.a == 255) { rawData[offset + 0] = c.r;