Steven B
Steven B
There primary solution that is accepted in industry is you have a single float deltaTime which is the amount of time in seconds as a double-precision number since the last...
> Going even further, I wonder if we need a visible preference for this at all? If this is just enabled by default, having a preference in preferences.txt (but not...
> But I think we can fix that by proposing a deduction guide for mdspan, from mdarray, and a constructor for mdspan from mdarray. This is fully acceptable to me
So, sorry about the compile errors. I imagine they are easy to fix. I wrote this at work without access to a C compiler. With regard to not matching the...
mattsta: can you post the assembly for the encode-decode on clang -O1 vs gcc -O3? I'm amazed there is almost a factor of 30 difference in performance and I really...
Try this out: ``` static inline double fastldiexp(double d,uint8 step) { union { double fval; struct { unsigned s:1; unsigned e:11; uint32_t m:52; }; } fval=d; e-=step; return fval; }...
You can't really add the feature without refactoring it into subparts to make some parts optional. As far as I know that's the only change I made in this diff....
Okay, I can fix it with multiple commits.
If my scripting patch was merged it would be trivial to script this On Fri, Oct 12, 2018, 11:46 AM NinjaTurtle007 wrote: > What would be an easy way to...
Want any help merging this? The functionality is critical for a bunch of things and critical to my security model, and it can help other implementers too.