more clean

This commit is contained in:
Adam D. Ruppe 2019-12-06 22:10:25 -05:00
parent 2a9df3b961
commit 4e49255070
2 changed files with 15 additions and 15 deletions

View File

@ -22,7 +22,7 @@
module sslsocket; module sslsocket;
public import std.socket; import std.socket;
// see also: // see also:
// http://msdn.microsoft.com/en-us/library/aa380536%28v=vs.85%29.aspx // http://msdn.microsoft.com/en-us/library/aa380536%28v=vs.85%29.aspx

View File

@ -182,7 +182,7 @@ import std.file;
alias STBTT_memcpy = core.stdc.string.memcpy; alias STBTT_memcpy = core.stdc.string.memcpy;
alias STBTT_memset = core.stdc.string.memset; alias STBTT_memset = core.stdc.string.memset;
////////////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////////////
// //
// TEXTURE BAKING API // TEXTURE BAKING API
// //
@ -217,7 +217,7 @@ struct stbtt_aligned_quad
// It's inefficient; you might want to c&p it and optimize it. // It's inefficient; you might want to c&p it and optimize it.
////////////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////////////
// //
// FONT LOADING // FONT LOADING
// //
@ -253,7 +253,7 @@ struct stbtt_fontinfo
// value data with no additional data structures. Returns 0 on failure. // 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 // GLYPH SHAPES (you probably don't need these, but they have to go before
// the bitmaps for C declaration-order reasons) // the bitmaps for C declaration-order reasons)
@ -279,7 +279,7 @@ struct stbtt__bitmap
ubyte *pixels; ubyte *pixels;
} }
////////////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////////////
// //
// Finding the right font... // 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 STBTT_MAC_LANG_ITALIAN =3 , STBTT_MAC_LANG_CHINESE_TRAD =19
}; };
/////////////////////////////////////////////////////////////////////////////// // /////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////// // /////////////////////////////////////////////////////////////////////////////
//// // //
//// IMPLEMENTATION // // IMPLEMENTATION
//// // //
//// // //
////////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////////
// //
// accessors to parse data from file // 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); STBTT_free(v, info.userdata);
} }
////////////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////////////
// //
// antialiasing software rasterizer // 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); stbtt_MakeCodepointBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, codepoint);
} }
////////////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////////////
// //
// bitmap baking // bitmap baking
// //
@ -1530,7 +1530,7 @@ void stbtt_GetBakedQuad(stbtt_bakedchar *chardata, int pw, int ph, int char_inde
*xpos += b.xadvance; *xpos += b.xadvance;
} }
////////////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////////////
// //
// font name matching -- recommended not to use this // font name matching -- recommended not to use this
// //