mirror of https://github.com/adamdruppe/arsd.git
work with old as well as new dmd for now
This commit is contained in:
parent
fcbb561df6
commit
d10bf0a2c8
6
color.d
6
color.d
|
@ -845,7 +845,7 @@ interface MemoryImage {
|
||||||
// tl;dr: IF YOU HAVE *ANY* QUESTIONS REGARDING THIS COMMENT, DON'T USE THIS!
|
// tl;dr: IF YOU HAVE *ANY* QUESTIONS REGARDING THIS COMMENT, DON'T USE THIS!
|
||||||
// Note to implementors: it is safe to simply do nothing in this method.
|
// Note to implementors: it is safe to simply do nothing in this method.
|
||||||
// Also, it should be safe to call this method twice or more.
|
// Also, it should be safe to call this method twice or more.
|
||||||
void clearInternal () nothrow @system @nogc;
|
void clearInternal () nothrow @system;// @nogc; // nogc is commented right now just because GC.free is only @nogc in newest dmd and i want to stay compatible a few versions back too. it can be added later
|
||||||
|
|
||||||
/// Convenient alias for `fromImage`
|
/// Convenient alias for `fromImage`
|
||||||
alias fromImageFile = fromImage;
|
alias fromImageFile = fromImage;
|
||||||
|
@ -860,7 +860,7 @@ class IndexedImage : MemoryImage {
|
||||||
/// the data as indexes into the palette. Stored left to right, top to bottom, no padding.
|
/// the data as indexes into the palette. Stored left to right, top to bottom, no padding.
|
||||||
ubyte[] data;
|
ubyte[] data;
|
||||||
|
|
||||||
override void clearInternal () nothrow @system @nogc {
|
override void clearInternal () nothrow @system {// @nogc {
|
||||||
import core.memory : GC;
|
import core.memory : GC;
|
||||||
// it is safe to call [GC.free] with `null` pointer.
|
// it is safe to call [GC.free] with `null` pointer.
|
||||||
GC.free(palette.ptr); palette = null;
|
GC.free(palette.ptr); palette = null;
|
||||||
|
@ -1006,7 +1006,7 @@ class TrueColorImage : MemoryImage {
|
||||||
int _width;
|
int _width;
|
||||||
int _height;
|
int _height;
|
||||||
|
|
||||||
override void clearInternal () nothrow @system @nogc {
|
override void clearInternal () nothrow @system {// @nogc {
|
||||||
import core.memory : GC;
|
import core.memory : GC;
|
||||||
// it is safe to call [GC.free] with `null` pointer.
|
// it is safe to call [GC.free] with `null` pointer.
|
||||||
GC.free(imageData.bytes.ptr); imageData.bytes = null;
|
GC.free(imageData.bytes.ptr); imageData.bytes = null;
|
||||||
|
|
Loading…
Reference in New Issue