mirror of https://github.com/adamdruppe/arsd.git
new dmd deprecation (ugh)
This commit is contained in:
parent
9235f38340
commit
4940a3344a
2
dds.d
2
dds.d
|
@ -85,7 +85,7 @@ public TrueColorImage ddsLoadFromMemory (const(void)[] buf) {
|
||||||
const(ddsBuffer_t)* dds = cast(const(ddsBuffer_t)*)buf.ptr;
|
const(ddsBuffer_t)* dds = cast(const(ddsBuffer_t)*)buf.ptr;
|
||||||
|
|
||||||
auto tc = new TrueColorImage(w, h);
|
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");
|
if (!DDSDecompress(dds, tc.imageData.colors)) throw new Exception("invalid dds image");
|
||||||
|
|
||||||
|
|
14
image.d
14
image.d
|
@ -9,6 +9,8 @@ public import arsd.targa;
|
||||||
public import arsd.pcx;
|
public import arsd.pcx;
|
||||||
public import arsd.dds;
|
public import arsd.dds;
|
||||||
|
|
||||||
|
import core.memory;
|
||||||
|
|
||||||
static if (__traits(compiles, { import iv.vfs; })) enum ArsdImageHasIVVFS = true; else enum ArsdImageHasIVVFS = false;
|
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 < 4) throw new Exception("cannot determine file format");
|
||||||
if (fsz > int.max/8) throw new Exception("image data too big");
|
if (fsz > int.max/8) throw new Exception("image data too big");
|
||||||
auto data = new ubyte[](cast(uint)fsz);
|
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);
|
fl.rawReadExact(data);
|
||||||
return loadImageFromMemory(data);
|
return loadImageFromMemory(data);
|
||||||
case ImageFileFormat.Png: static if (is(T == string)) return readPng(filename); else return readPng(filename.idup);
|
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 < 4) throw new Exception("cannot determine file format");
|
||||||
if (fsz > int.max/8) throw new Exception("image data too big");
|
if (fsz > int.max/8) throw new Exception("image data too big");
|
||||||
auto data = new ubyte[](cast(uint)fsz);
|
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);
|
fl.rawReadExact(data);
|
||||||
return loadImageFromMemory(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");
|
if (dstwdt < 1 || dsthgt < 1 || dstwdt > ImageResizeMaxDimension || dsthgt > ImageResizeMaxDimension) throw new Exception("invalid destination image size");
|
||||||
auto resimg = new TrueColorImage(dstwdt, dsthgt);
|
auto resimg = new TrueColorImage(dstwdt, dsthgt);
|
||||||
scope(failure) delete resimg;
|
scope(failure) .destroy(resimg);
|
||||||
if (auto tc = cast(TrueColorImage)msrcimg) {
|
if (auto tc = cast(TrueColorImage)msrcimg) {
|
||||||
imageResize!Components(
|
imageResize!Components(
|
||||||
delegate (Color[] destrow, int y) { destrow[] = tc.imageData.colors[y*tc.width..(y+1)*tc.width]; },
|
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;
|
float[][Components] samples;
|
||||||
Color[] srcrow, dstrow;
|
Color[] srcrow, dstrow;
|
||||||
scope(exit) {
|
scope(exit) {
|
||||||
foreach (ref rsm; resamplers[]) delete rsm;
|
foreach (ref rsm; resamplers[]) .destroy(rsm);
|
||||||
foreach (ref smr; samples[]) delete smr;
|
foreach (ref smr; samples[]) .destroy(smr);
|
||||||
delete srcrow;
|
|
||||||
delete dstrow;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// now create a ImageResampleWorker instance for each component to process
|
// now create a ImageResampleWorker instance for each component to process
|
||||||
|
|
2
pcx.d
2
pcx.d
|
@ -190,7 +190,7 @@ private MemoryImage loadPcxImpl(ST) (auto ref ST fl, const(char)[] filename) {
|
||||||
|
|
||||||
IndexedImage iimg;
|
IndexedImage iimg;
|
||||||
TrueColorImage timg;
|
TrueColorImage timg;
|
||||||
scope(failure) { delete timg; delete iimg; }
|
scope(failure) { .destroy(timg); .destroy(iimg); }
|
||||||
|
|
||||||
if (!bpp24) {
|
if (!bpp24) {
|
||||||
iimg = new IndexedImage(wdt, hgt);
|
iimg = new IndexedImage(wdt, hgt);
|
||||||
|
|
4
png.d
4
png.d
|
@ -1,6 +1,8 @@
|
||||||
/// PNG file handling for color.d's Image interfaces
|
/// PNG file handling for color.d's Image interfaces
|
||||||
module arsd.png;
|
module arsd.png;
|
||||||
|
|
||||||
|
import core.memory;
|
||||||
|
|
||||||
/// Easily reads a png file into a MemoryImage
|
/// Easily reads a png file into a MemoryImage
|
||||||
MemoryImage readPng(string filename) {
|
MemoryImage readPng(string filename) {
|
||||||
import std.file;
|
import std.file;
|
||||||
|
@ -471,7 +473,7 @@ void writeImageToPngFile(in char[] filename, TrueColorImage image) {
|
||||||
fputc((c.checksum & 0x000000ff) >> 0, fp);
|
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
|
// just wanna make sure this crap doesn't stick around
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
targa.d
2
targa.d
|
@ -365,7 +365,7 @@ private MemoryImage loadTgaImpl(ST) (auto ref ST fl, const(char)[] filename) {
|
||||||
bool premult = false;
|
bool premult = false;
|
||||||
|
|
||||||
auto tcimg = new TrueColorImage(hdr.width, hdr.height);
|
auto tcimg = new TrueColorImage(hdr.width, hdr.height);
|
||||||
scope(failure) delete tcimg;
|
scope(failure) .destroy(tcimg);
|
||||||
|
|
||||||
{
|
{
|
||||||
// read image data
|
// read image data
|
||||||
|
|
4
ttf.d
4
ttf.d
|
@ -732,7 +732,7 @@ int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_verte
|
||||||
flags = vertices[off+i].type;
|
flags = vertices[off+i].type;
|
||||||
if (flags & 2) {
|
if (flags & 2) {
|
||||||
stbtt_int16 dx = *points++;
|
stbtt_int16 dx = *points++;
|
||||||
x += (flags & 16) ? dx : -dx; // ???
|
x += (flags & 16) ? dx : -cast(int)(dx); // ???
|
||||||
} else {
|
} else {
|
||||||
if (!(flags & 16)) {
|
if (!(flags & 16)) {
|
||||||
x = x + cast(stbtt_int16) (points[0]*256 + points[1]);
|
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;
|
flags = vertices[off+i].type;
|
||||||
if (flags & 4) {
|
if (flags & 4) {
|
||||||
stbtt_int16 dy = *points++;
|
stbtt_int16 dy = *points++;
|
||||||
y += (flags & 32) ? dy : -dy; // ???
|
y += (flags & 32) ? dy : -cast(int)(dy); // ???
|
||||||
} else {
|
} else {
|
||||||
if (!(flags & 32)) {
|
if (!(flags & 32)) {
|
||||||
y = y + cast(stbtt_int16) (points[0]*256 + points[1]);
|
y = y + cast(stbtt_int16) (points[0]*256 + points[1]);
|
||||||
|
|
Loading…
Reference in New Issue