mirror of https://github.com/adamdruppe/arsd.git
catchup
This commit is contained in:
parent
4844df22b5
commit
64694d4da3
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue