This commit is contained in:
Adam D. Ruppe 2016-07-31 23:51:53 -04:00
parent 4844df22b5
commit 64694d4da3
2 changed files with 6 additions and 1 deletions

View File

@ -286,7 +286,7 @@ final class OpenGlTexture {
free(cast(void*) data);
}
/// Generates from text. Requires stb_truetype.d
/// Generates from text. Requires ttf.d
/// pass a pointer to the TtfFont as the first arg (it is template cuz of lazy importing, not because it actually works with different types)
this(T, FONT)(FONT* font, int size, in T[] text) if(is(T == char)) {
assert(font !is null);

View File

@ -1,3 +1,8 @@
/************************
This module is no longer maintained, use arsd.ttf instead.
*************************/
/// stb_truetype.h - v0.6c - public domain
/// authored from 2009-2012 by Sean Barrett / RAD Game Tools
//