diff --git a/sslsocket.d b/sslsocket.d index 5b9e49d..4596e65 100644 --- a/sslsocket.d +++ b/sslsocket.d @@ -22,7 +22,7 @@ module sslsocket; -public import std.socket; +import std.socket; // see also: // http://msdn.microsoft.com/en-us/library/aa380536%28v=vs.85%29.aspx diff --git a/stb_truetype.d b/stb_truetype.d index 1a00c87..dcfa716 100644 --- a/stb_truetype.d +++ b/stb_truetype.d @@ -182,7 +182,7 @@ import std.file; alias STBTT_memcpy = core.stdc.string.memcpy; alias STBTT_memset = core.stdc.string.memset; -////////////////////////////////////////////////////////////////////////////// +// //////////////////////////////////////////////////////////////////////////// // // TEXTURE BAKING API // @@ -217,7 +217,7 @@ struct stbtt_aligned_quad // It's inefficient; you might want to c&p it and optimize it. -////////////////////////////////////////////////////////////////////////////// +// //////////////////////////////////////////////////////////////////////////// // // FONT LOADING // @@ -253,7 +253,7 @@ struct stbtt_fontinfo // value data with no additional data structures. Returns 0 on failure. -////////////////////////////////////////////////////////////////////////////// +// //////////////////////////////////////////////////////////////////////////// // // GLYPH SHAPES (you probably don't need these, but they have to go before // the bitmaps for C declaration-order reasons) @@ -279,7 +279,7 @@ struct stbtt__bitmap ubyte *pixels; } -////////////////////////////////////////////////////////////////////////////// +// //////////////////////////////////////////////////////////////////////////// // // Finding the right font... // @@ -363,14 +363,14 @@ enum { // languageID for STBTT_PLATFORM_ID_MAC STBTT_MAC_LANG_ITALIAN =3 , STBTT_MAC_LANG_CHINESE_TRAD =19 }; -/////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////////// -//// -//// IMPLEMENTATION -//// -//// +// ///////////////////////////////////////////////////////////////////////////// +// ///////////////////////////////////////////////////////////////////////////// +// // +// // IMPLEMENTATION +// // +// // -////////////////////////////////////////////////////////////////////////// +// //////////////////////////////////////////////////////////////////////// // // accessors to parse data from file // @@ -977,7 +977,7 @@ void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *v) STBTT_free(v, info.userdata); } -////////////////////////////////////////////////////////////////////////////// +// //////////////////////////////////////////////////////////////////////////// // // antialiasing software rasterizer // @@ -1459,7 +1459,7 @@ void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, ubyte *output, int ou stbtt_MakeCodepointBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, codepoint); } -////////////////////////////////////////////////////////////////////////////// +// //////////////////////////////////////////////////////////////////////////// // // bitmap baking // @@ -1530,7 +1530,7 @@ void stbtt_GetBakedQuad(stbtt_bakedchar *chardata, int pw, int ph, int char_inde *xpos += b.xadvance; } -////////////////////////////////////////////////////////////////////////////// +// //////////////////////////////////////////////////////////////////////////// // // font name matching -- recommended not to use this //