SDL_FontCache icon indicating copy to clipboard operation
SDL_FontCache copied to clipboard

A generic font caching C library with loading and rendering support for SDL.

Results 36 SDL_FontCache issues
Sort by recently updated
recently updated
newest added

As you can see in the screenshot, the text itself is rendered correctly, but its outline is not: for ASCII characters it is facing bottom-right, but for UTF8 ones it's...

I recently discovered that the spacing between glyphs differs when I render text with raw SDL vs using FC. It seems that FC just renders glyphs using their bounding box...

The y offset added to each line is just calculated as the font height, and it ought to be the font height * the scale.y

I get numerous errors when trying to run test\main.c within Visual Studio 2022. These are some of the errors: > First call to 'SDL_SetRenderTarget' within 'FC_UploadGlyphCache' results in numerous assertions...

How do i build font cache as a shared library? if i build it with cmake "CMakeLists.txt" and then make, it gives me a libFontCache.a-file. I need an .so-file. How...

I was trying to make a "pseudo-terminal" SDL2 window, when I encountered this. I thought I was going insane at first, but there ACTUALLY seems to be some kind of...