mirror of https://github.com/adamdruppe/arsd.git
mac safer by default
This commit is contained in:
parent
c13a8cd2e5
commit
a9a9d75988
|
@ -18582,7 +18582,7 @@ version(OSXCocoa) {
|
||||||
|
|
||||||
final:
|
final:
|
||||||
|
|
||||||
void convertToRgbaBytes(ubyte[] where) {
|
void convertToRgbaBytes(ubyte[] where) @system {
|
||||||
assert(where.length == this.width * this.height * 4);
|
assert(where.length == this.width * this.height * 4);
|
||||||
|
|
||||||
// if rawData had a length....
|
// 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
|
// FIXME: this is probably wrong
|
||||||
assert(where.length == this.width * this.height * 4);
|
assert(where.length == this.width * this.height * 4);
|
||||||
|
|
||||||
|
@ -18642,7 +18642,7 @@ version(OSXCocoa) {
|
||||||
CGContextRelease(context);
|
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;
|
auto offset = (y * width + x) * 4;
|
||||||
if (c.a == 255) {
|
if (c.a == 255) {
|
||||||
rawData[offset + 0] = c.r;
|
rawData[offset + 0] = c.r;
|
||||||
|
|
Loading…
Reference in New Issue