-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added image export, step closer to font loading
- Loading branch information
1 parent
ef73633
commit 89a9f1f
Showing
13 changed files
with
693 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
|
||
namespace raylib; | ||
|
||
|
||
class Font | ||
{ | ||
const | ||
/** | ||
* @var int FONT_DEFAULT Default font generation, anti-aliased | ||
*/ | ||
FONT_DEFAULT = 0, | ||
/** | ||
* @var int FONT_BITMAP Bitmap font generation, no anti-aliasing | ||
*/ | ||
FONT_BITMAP = 1, | ||
/** | ||
* @var int FONT_SDF SDF font generation, requires external shader | ||
*/ | ||
FONT_SDF = 2; | ||
|
||
} |
Oops, something went wrong.