Package Release Info

SDL3_ttf-3.2.2-bp160.1.3

Update Info: Base Release
Available in Package Hub : 16.0

platforms

AArch64
ppc64le
s390x
x86-64

subpackages

libSDL3_ttf0
SDL3_ttf-devel

Change Logs

* Mon Mar 31 2025 Jan Engelhardt <jengelh@inai.de>
- Update to release 3.2.2
  * Added TTF_GetFontWeight()
* Fri Feb 21 2025 Jan Engelhardt <jengelh@inai.de>
- Update to release 3.1.2
  * No changelog was provided
* Sat Feb 01 2025 Jan Engelhardt <jengelh@inai.de>
- Initial package (version 3.1.0) for build.opensuse.org
  * SDL_ttf, but updated for a SDL 3.0 base
  * Added the concept of a text object and text engine, which is
    able to efficiently render text for a variety of output
    methods
  * Added TTF_CreateSurfaceTextEngine() and TTF_DrawSurfaceText()
    for drawing text to SDL_Surface output
  * Added TTF_CreateRendererTextEngine() and
    TTF_DrawRendererText() for drawing text to SDL_Renderer
    output
  * Added TTF_CreateGPUTextEngine() and TTF_GetGPUTextDrawData()
    for drawing text to SDL_GPU output
  * Made the text engine API public in
    <SDL3_ttf/SDL_textengine.h> so you can integrate text objects
    into custom font display solutions
  * Added TTF_CopyFont() to allow you to easily make fonts of
    different sizes
  * Added TTF_AddFallbackFont() to allow combining fonts with
    distinct glyph support
  * Added support for OT-SVG fonts, which are useful as fallback
    fonts for color emoji support
  * Updated SDF font support and added an example of using it
    with the SDL GPU API