-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document text effect active push/pop/peek
- Loading branch information
Showing
6 changed files
with
90 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[](../header.md ':include') | ||
|
||
# cf_peek_text_effect_active | ||
|
||
Category: [text](/api_reference?id=text) | ||
GitHub: [cute_draw.h](https://github.com/RandyGaul/cute_framework/blob/master/include/cute_draw.h) | ||
--- | ||
|
||
Returns the last text active state. | ||
|
||
```cpp | ||
bool cf_peek_text_effect_active(); | ||
``` | ||
|
||
## Related Pages | ||
|
||
[cf_push_text_effect_active](/text/cf_push_text_effect_active.md) | ||
[cf_pop_text_effect_active](/text/cf_pop_text_effect_active.md) |
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,18 @@ | ||
[](../header.md ':include') | ||
|
||
# cf_pop_text_effect_active | ||
|
||
Category: [text](/api_reference?id=text) | ||
GitHub: [cute_draw.h](https://github.com/RandyGaul/cute_framework/blob/master/include/cute_draw.h) | ||
--- | ||
|
||
Pops the previously pushed activated state for text effects. See [cf_push_text_effect_active](/text/cf_push_text_effect_active.md). | ||
|
||
```cpp | ||
bool cf_pop_text_effect_active(); | ||
``` | ||
|
||
## Related Pages | ||
|
||
[cf_push_text_effect_active](/text/cf_push_text_effect_active.md) | ||
[cf_peek_text_effect_active](/text/cf_peek_text_effect_active.md) |
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,22 @@ | ||
[](../header.md ':include') | ||
|
||
# cf_push_text_effect_active | ||
|
||
Category: [text](/api_reference?id=text) | ||
GitHub: [cute_draw.h](https://github.com/RandyGaul/cute_framework/blob/master/include/cute_draw.h) | ||
--- | ||
|
||
Turns on/off text effects. | ||
|
||
```cpp | ||
void cf_push_text_effect_active(bool effects_on); | ||
``` | ||
## Remarks | ||
Text effects are on by default. | ||
## Related Pages | ||
[cf_peek_text_effect_active](/text/cf_peek_text_effect_active.md) | ||
[cf_pop_text_effect_active](/text/cf_pop_text_effect_active.md) |
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