Jonathan Dearborn

Results 118 comments of Jonathan Dearborn

Hey, cross-compilation is definitely possible, though I haven't done it Linux -> Windows myself. You can use a Linux to Windows cross-compile CMake toolchain file to tell CMake what to...

Could you try getting more info via APItrace, perhaps? http://apitrace.github.io/

I'm good with the change, but use the C-style cast, as SDL_FontCache is a C library: `(int)x`

Do you mean rotating the entire string to be drawn? Currently there's not a built-in way to do that and you'd need to draw to a temp target and then...

Using SDL_Renderer or SDL_gpu?

``` // Create the intermediate texture target SDL_Texture* temp = SDL_CreateTexture(renderer, format, SDL_TEXTUREACCESS_TARGET, width, height); // You should reuse this instead of creating a new one every time. // Draw...

Those look pretty nice! I'd love to see how you went about it.

Thanks! These are all implicit conversion warnings. They should be fixed. Some are missing explicit casts and some are using double-precision trig functions that were only standardized in C99 (which...

I made some changes in 49e166ed01104c3bc1b9bdbd29af1ce78eae6323 for this, but there might always be a bunch of warnings in Visual Studio because of how this project is set up.

Yes, of course it's important. The biggest obstacle is that I'm the core developer and haven't had much time lately. I wrote all of the structure and implementations of almost...