|
@@ -88,7 +88,7 @@ typedef struct SDLTest_TextWindow
|
|
|
*
|
|
|
* \returns the new window, or NULL on failure.
|
|
|
*
|
|
|
- * \since This function is available since SDL 2.24.0
|
|
|
+ * \since This function is available since SDL 3.0.0.
|
|
|
*/
|
|
|
SDLTest_TextWindow *SDLTest_TextWindowCreate(float x, float y, float w, float h);
|
|
|
|
|
@@ -100,7 +100,7 @@ SDLTest_TextWindow *SDLTest_TextWindowCreate(float x, float y, float w, float h)
|
|
|
* \param textwin The text output window
|
|
|
* \param renderer The renderer to use for display
|
|
|
*
|
|
|
- * \since This function is available since SDL 2.24.0
|
|
|
+ * \since This function is available since SDL 3.0.0.
|
|
|
*/
|
|
|
void SDLTest_TextWindowDisplay(SDLTest_TextWindow *textwin, SDL_Renderer *renderer);
|
|
|
|
|
@@ -115,7 +115,7 @@ void SDLTest_TextWindowDisplay(SDLTest_TextWindow *textwin, SDL_Renderer *render
|
|
|
* \param fmt A printf() style format string
|
|
|
* \param ... additional parameters matching % tokens in the `fmt` string, if any
|
|
|
*
|
|
|
- * \since This function is available since SDL 2.24.0
|
|
|
+ * \since This function is available since SDL 3.0.0.
|
|
|
*/
|
|
|
void SDLTest_TextWindowAddText(SDLTest_TextWindow *textwin, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2);
|
|
|
|
|
@@ -130,7 +130,7 @@ void SDLTest_TextWindowAddText(SDLTest_TextWindow *textwin, SDL_PRINTF_FORMAT_ST
|
|
|
* \param text The text to add to the window
|
|
|
* \param len The length, in bytes, of the text to add to the window
|
|
|
*
|
|
|
- * \since This function is available since SDL 2.24.0
|
|
|
+ * \since This function is available since SDL 3.0.0.
|
|
|
*/
|
|
|
void SDLTest_TextWindowAddTextWithLength(SDLTest_TextWindow *textwin, const char *text, size_t len);
|
|
|
|
|
@@ -139,7 +139,7 @@ void SDLTest_TextWindowAddTextWithLength(SDLTest_TextWindow *textwin, const char
|
|
|
*
|
|
|
* \param textwin The text output window
|
|
|
*
|
|
|
- * \since This function is available since SDL 2.24.0
|
|
|
+ * \since This function is available since SDL 3.0.0.
|
|
|
*/
|
|
|
void SDLTest_TextWindowClear(SDLTest_TextWindow *textwin);
|
|
|
|
|
@@ -148,7 +148,7 @@ void SDLTest_TextWindowClear(SDLTest_TextWindow *textwin);
|
|
|
*
|
|
|
* \param textwin The text output window
|
|
|
*
|
|
|
- * \since This function is available since SDL 2.24.0
|
|
|
+ * \since This function is available since SDL 3.0.0.
|
|
|
*/
|
|
|
void SDLTest_TextWindowDestroy(SDLTest_TextWindow *textwin);
|
|
|
|