You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 within the FlushRenderCommands function in the SDL2 file render\SDL_render.c.
Assertion that fails is this:
SDL_assert((renderer->render_commands == NULL) == (renderer->render_commands_tail == NULL));
If you ignore the assertions above, then a 'read access violation' also occurs in the same call to 'SDL_SetRenderTarget' when this function eventually calls SDL_LockMutex_srw within the SDL2 file src\thread\windows\SDL_sysmutex.c
The text was updated successfully, but these errors were encountered:
I get numerous errors when trying to run test\main.c within Visual Studio 2022. These are some of the errors:
Assertion that fails is this:
SDL_assert((renderer->render_commands == NULL) == (renderer->render_commands_tail == NULL));
The text was updated successfully, but these errors were encountered: