Sylvain Becker

Results 199 comments of Sylvain Becker

@slouken no problem for the delay. actually, the PR is just a prototype to see where it goes. yes, swipe gesture are going to be really different across platform if...

Updated to latest head. macosx: need some testing. ios: needs to be fixed I think. the zoom here is accumulated according to documentation (whereas we only want the delta). After...

I *guess* : - it would add delay with more than 1 finger. because it should buffer a few event internally and threshold to detect a pinch/etc. - no delay...

@Kontrabant thanks for the feedback ! I've updated and hasn't squashed the commit yet, please have a look

@ihhub quickly looking at your code... there is the CopyImageToSurface, then there is a SDL_UpdateTexture with the surface->pixels. I don't really got what is the "transform" path. (palette to 32...

to remove the conversion loop (and have something equivalent), you should use the palette texture PR. and you should definitively see something faster ? So I don't get it .....

I haven't used this gradle feature to build SDL, I still use the Android.mk to build as static libraries. let's ask: @tlgkccampbell https://github.com/libsdl-org/SDL/commit/b401cfd915d9656f8898b1fdf82fce2d73630400 @StephenCWills https://github.com/libsdl-org/SDL/commit/123b9aaa410bc9289f7de1b02c0f3c5cbcf372f2

there was this PR related: https://github.com/libsdl-org/SDL/pull/4690

Indeed ... d3d11 (nor d3d12) isn't really batching: https://github.com/libsdl-org/SDL/blob/14a4ce8b59c3fd24ba91fcfa772af03e12e069f3/src/render/direct3d11/SDL_render_d3d11.c#L2100-L2115 gles2 (and gl) does: https://github.com/libsdl-org/SDL/blob/14a4ce8b59c3fd24ba91fcfa772af03e12e069f3/src/render/opengles2/SDL_render_gles2.c#L1299-L1339 There are 3 levels of batching in sdl: - no batching / deactivated: each command is...

Hi, There was so old ticket about this: https://github.com/libsdl-org/SDL_ttf/issues/324 https://github.com/libsdl-org/SDL_ttf/pull/329 They were bug fixes for sparc cpu's. IIRC, neon allows unaligned load/store, it will only be slower. otherwise, does it...