From 4940a3344af29d3bde69817a7d939e318190e096 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 26 Feb 2018 19:50:25 -0500 Subject: [PATCH] new dmd deprecation (ugh) --- dds.d | 2 +- image.d | 14 +++++++------- pcx.d | 2 +- png.d | 4 +++- targa.d | 2 +- ttf.d | 4 ++-- 6 files changed, 15 insertions(+), 13 deletions(-) diff --git a/dds.d b/dds.d index 3b735ce..5edf334 100644 --- a/dds.d +++ b/dds.d @@ -85,7 +85,7 @@ public TrueColorImage ddsLoadFromMemory (const(void)[] buf) { const(ddsBuffer_t)* dds = cast(const(ddsBuffer_t)*)buf.ptr; auto tc = new TrueColorImage(w, h); - scope(failure) delete tc; + scope(failure) .destroy(tc); if (!DDSDecompress(dds, tc.imageData.colors)) throw new Exception("invalid dds image"); diff --git a/image.d b/image.d index 22989d0..cd5f5e3 100644 --- a/image.d +++ b/image.d @@ -9,6 +9,8 @@ public import arsd.targa; public import arsd.pcx; public import arsd.dds; +import core.memory; + static if (__traits(compiles, { import iv.vfs; })) enum ArsdImageHasIVVFS = true; else enum ArsdImageHasIVVFS = false; @@ -229,7 +231,7 @@ public MemoryImage loadImageFromFile(T:const(char)[]) (T filename) { if (fsz < 4) throw new Exception("cannot determine file format"); if (fsz > int.max/8) throw new Exception("image data too big"); auto data = new ubyte[](cast(uint)fsz); - scope(exit) delete data; // this should be safe, as image will copy data to it's internal storage + scope(exit) GC.free(data.ptr); // this should be safe, as image will copy data to it's internal storage fl.rawReadExact(data); return loadImageFromMemory(data); case ImageFileFormat.Png: static if (is(T == string)) return readPng(filename); else return readPng(filename.idup); @@ -277,7 +279,7 @@ public MemoryImage loadImageFromFile (VFile fl) { if (fsz < 4) throw new Exception("cannot determine file format"); if (fsz > int.max/8) throw new Exception("image data too big"); auto data = new ubyte[](cast(uint)fsz); - scope(exit) delete data; // this should be safe, as image will copy data to it's internal storage + scope(exit) { GC.free(data.ptr); } // this should be safe, as image will copy data to it's internal storage fl.rawReadExact(data); return loadImageFromMemory(data); } @@ -365,7 +367,7 @@ public TrueColorImage imageResize(int Components=4) (MemoryImage msrcimg, int ds } if (dstwdt < 1 || dsthgt < 1 || dstwdt > ImageResizeMaxDimension || dsthgt > ImageResizeMaxDimension) throw new Exception("invalid destination image size"); auto resimg = new TrueColorImage(dstwdt, dsthgt); - scope(failure) delete resimg; + scope(failure) .destroy(resimg); if (auto tc = cast(TrueColorImage)msrcimg) { imageResize!Components( delegate (Color[] destrow, int y) { destrow[] = tc.imageData.colors[y*tc.width..(y+1)*tc.width]; }, @@ -438,10 +440,8 @@ public void imageResize(int Components=4) ( float[][Components] samples; Color[] srcrow, dstrow; scope(exit) { - foreach (ref rsm; resamplers[]) delete rsm; - foreach (ref smr; samples[]) delete smr; - delete srcrow; - delete dstrow; + foreach (ref rsm; resamplers[]) .destroy(rsm); + foreach (ref smr; samples[]) .destroy(smr); } // now create a ImageResampleWorker instance for each component to process diff --git a/pcx.d b/pcx.d index 7e43e55..8edc665 100644 --- a/pcx.d +++ b/pcx.d @@ -190,7 +190,7 @@ private MemoryImage loadPcxImpl(ST) (auto ref ST fl, const(char)[] filename) { IndexedImage iimg; TrueColorImage timg; - scope(failure) { delete timg; delete iimg; } + scope(failure) { .destroy(timg); .destroy(iimg); } if (!bpp24) { iimg = new IndexedImage(wdt, hgt); diff --git a/png.d b/png.d index 9123704..e1ad455 100644 --- a/png.d +++ b/png.d @@ -1,6 +1,8 @@ /// PNG file handling for color.d's Image interfaces module arsd.png; +import core.memory; + /// Easily reads a png file into a MemoryImage MemoryImage readPng(string filename) { import std.file; @@ -471,7 +473,7 @@ void writeImageToPngFile(in char[] filename, TrueColorImage image) { fputc((c.checksum & 0x000000ff) >> 0, fp); } - delete com; // there is a reference to this in the PNG struct, but it is going out of scope here too, so who cares + GC.free(com.ptr); // there is a reference to this in the PNG struct, but it is going out of scope here too, so who cares // just wanna make sure this crap doesn't stick around } diff --git a/targa.d b/targa.d index 7dcc3b9..1637af4 100644 --- a/targa.d +++ b/targa.d @@ -365,7 +365,7 @@ private MemoryImage loadTgaImpl(ST) (auto ref ST fl, const(char)[] filename) { bool premult = false; auto tcimg = new TrueColorImage(hdr.width, hdr.height); - scope(failure) delete tcimg; + scope(failure) .destroy(tcimg); { // read image data diff --git a/ttf.d b/ttf.d index c25b065..627ac96 100644 --- a/ttf.d +++ b/ttf.d @@ -732,7 +732,7 @@ int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_verte flags = vertices[off+i].type; if (flags & 2) { stbtt_int16 dx = *points++; - x += (flags & 16) ? dx : -dx; // ??? + x += (flags & 16) ? dx : -cast(int)(dx); // ??? } else { if (!(flags & 16)) { x = x + cast(stbtt_int16) (points[0]*256 + points[1]); @@ -748,7 +748,7 @@ int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_verte flags = vertices[off+i].type; if (flags & 4) { stbtt_int16 dy = *points++; - y += (flags & 32) ? dy : -dy; // ??? + y += (flags & 32) ? dy : -cast(int)(dy); // ??? } else { if (!(flags & 32)) { y = y + cast(stbtt_int16) (points[0]*256 + points[1]);