TechPizza

Results 37 comments of TechPizza

Making most of the ParseContext methods virtual had no measurable performance impact and it allows for greatly customizable parsing (and allows me to remove the ObjParser copy from my project...

I'll try to improve tests when I have more free time on my hands, and thanks for your patience!

After some further review I will add unit tests for SparseDictionary and VkRefCountManager.

https://github.com/TechnologicalPizza/lidgren-network-gen3 Active fork but is really striving away from the original. Similar to space-wizards fork (Span support, bugfixes, allocation improvements) but includes many API and internal changes making it incompatible...

@ThomasMiz Opened up issues on my fork. Don't even remember why I disabled them 😃

Oh yea, I really love new stuff. I'm trying to make everything as user-friendly as possible. Have even considered making every message a `Stream` that is sent on the fly,...

It would be an improvement compared to needing the full message in memory though and by that give better performance. I plan that messages will come in synchronously based on...

Hmm I don't think this PR would ever pass as I've done way too many changes for it to conform to the old API. It would be better if this...

I'm not entirely sure, but it looks as if this null exception could have happened before my PR as well. Nonetheless, this should be fixable without sacrificing functionality. And on...

While IL2CPP does support the System.UIntPtr and pointer arithmetic, constant `nint`/`nuint` are a recent addition to C# and IL2CPP clearly does not handle them well. https://github.com/oleg-st/ZstdSharp/blob/314fbc4c7e87c4eec503090c23d93329d25e4b59/src/ZstdSharp/Unsafe/ZstdInternal.cs#L17 Potential fix would be...