mac safer by default

This commit is contained in:
Adam D. Ruppe 2024-09-22 14:32:20 -04:00
parent c13a8cd2e5
commit a9a9d75988
1 changed files with 3 additions and 3 deletions

View File

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