diff options
| author | realtradam <[email protected]> | 2023-03-12 01:44:46 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-03-12 01:44:46 -0500 |
| commit | 632619168ddbe7707d4b47bf2ffcc972df7a20ea (patch) | |
| tree | 6d2c623d57693de47aee685e26d72536144c340e /include | |
| parent | d5ebba9e62e94eb5b2388a4471a6feae4f5c8486 (diff) | |
| download | RodeoKit-632619168ddbe7707d4b47bf2ffcc972df7a20ea.tar.gz RodeoKit-632619168ddbe7707d4b47bf2ffcc972df7a20ea.zip | |
cleanup and fix logging and frame timing
Diffstat (limited to 'include')
| -rw-r--r-- | include/rodeo.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/rodeo.h b/include/rodeo.h index a0ffb08..c261cc7 100644 --- a/include/rodeo.h +++ b/include/rodeo.h @@ -147,6 +147,9 @@ rodeo_string_clone(const rodeo_string_t self); rodeo_string_t rodeo_string_format(const char *format, ...); +rodeo_string_t +rodeo_string_vargs_format(const char *format, va_list vargs); + /// --- Log --- void @@ -170,6 +173,9 @@ rodeo_frame_persecond_get(void); void rodeo_frame_limit_set(uint32_t limit); +uint32_t +rodeo_frame_limit_get(void); + /// --- Input --- int32_t |
