-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
477db71
commit 5a1d4a1
Showing
6 changed files
with
63 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
###### (This function is part of SDL_ttf, a separate library from SDL.) | ||
# TTF_DIRECTION_BTT | ||
|
||
Please refer to [TTF_Direction](TTF_Direction) for details. | ||
|
||
---- | ||
[CategoryAPI](CategoryAPI), [CategoryAPIEnumerators](CategoryAPIEnumerators) | ||
|
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,8 @@ | ||
###### (This function is part of SDL_ttf, a separate library from SDL.) | ||
# TTF_DIRECTION_LTR | ||
|
||
Please refer to [TTF_Direction](TTF_Direction) for details. | ||
|
||
---- | ||
[CategoryAPI](CategoryAPI), [CategoryAPIEnumerators](CategoryAPIEnumerators) | ||
|
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,8 @@ | ||
###### (This function is part of SDL_ttf, a separate library from SDL.) | ||
# TTF_DIRECTION_RTL | ||
|
||
Please refer to [TTF_Direction](TTF_Direction) for details. | ||
|
||
---- | ||
[CategoryAPI](CategoryAPI), [CategoryAPIEnumerators](CategoryAPIEnumerators) | ||
|
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,8 @@ | ||
###### (This function is part of SDL_ttf, a separate library from SDL.) | ||
# TTF_DIRECTION_TTB | ||
|
||
Please refer to [TTF_Direction](TTF_Direction) for details. | ||
|
||
---- | ||
[CategoryAPI](CategoryAPI), [CategoryAPIEnumerators](CategoryAPIEnumerators) | ||
|
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,29 @@ | ||
###### (This function is part of SDL_ttf, a separate library from SDL.) | ||
# TTF_SetFontLineSkip | ||
|
||
Set the spacing between lines of text for a font. | ||
|
||
## Header File | ||
|
||
Defined in [<SDL_ttf.h>](https://github.com/libsdl-org/SDL_ttf/blob/SDL2/include/SDL_ttf.h) | ||
|
||
## Syntax | ||
|
||
```c | ||
void TTF_SetFontLineSkip(TTF_Font *font, int lineskip); | ||
``` | ||
## Function Parameters | ||
| | | | | ||
| ---------------------- | ------------ | ---------------------------------- | | ||
| [TTF_Font](TTF_Font) * | **font** | the font to modify. | | ||
| int | **lineskip** | the new line spacing for the font. | | ||
## Version | ||
This function is available since SDL_ttf 2.22.0. | ||
---- | ||
[CategoryAPI](CategoryAPI), [CategoryAPIFunction](CategoryAPIFunction) | ||