-
Notifications
You must be signed in to change notification settings - Fork 44
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
75f29a6
commit c513cf0
Showing
10 changed files
with
77 additions
and
15 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
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,8 @@ | ||
###### (This function is part of SDL_ttf, a separate library from SDL.) | ||
# TTF_IMAGE_ALPHA | ||
|
||
Please refer to [TTF_ImageType](TTF_ImageType) 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_IMAGE_COLOR | ||
|
||
Please refer to [TTF_ImageType](TTF_ImageType) 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_IMAGE_INVALID | ||
|
||
Please refer to [TTF_ImageType](TTF_ImageType) 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_IMAGE_SDF | ||
|
||
Please refer to [TTF_ImageType](TTF_ImageType) 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,28 @@ | ||
###### (This function is part of SDL_ttf, a separate library from SDL.) | ||
# TTF_ImageType | ||
|
||
The type of data in a glyph image | ||
|
||
## Header File | ||
|
||
Defined in [<SDL3_ttf/SDL_ttf.h>](https://github.com/libsdl-org/SDL_ttf/blob/main/include/SDL3_ttf/SDL_ttf.h) | ||
|
||
## Syntax | ||
|
||
```c | ||
typedef enum TTF_ImageType | ||
{ | ||
TTF_IMAGE_INVALID, | ||
TTF_IMAGE_ALPHA, /**< The color channels are white */ | ||
TTF_IMAGE_COLOR, /**< The color channels have image data */ | ||
TTF_IMAGE_SDF, /**< The alpha channel has signed distance field information */ | ||
} TTF_ImageType; | ||
``` | ||
|
||
## Version | ||
|
||
This enum is available since SDL_ttf 3.0.0. | ||
|
||
---- | ||
[CategoryAPI](CategoryAPI), [CategoryAPIEnum](CategoryAPIEnum), [CategorySDLTTF](CategorySDLTTF) | ||
|