new dmd deprecation (ugh)

This commit is contained in:
Adam D. Ruppe 2018-02-26 19:50:25 -05:00
parent 9235f38340
commit 4940a3344a
6 changed files with 15 additions and 13 deletions

2
dds.d
View File

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

14
image.d
View File

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

2
pcx.d
View File

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

4
png.d
View File

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

View File

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

4
ttf.d
View File

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