Mikko Lehtonen

Results 13 comments of Mikko Lehtonen

I would very much like that there would be some enforcement that leaks wouldn't be quite as easy. I mean, `rust-objc-foundation` wrappers leak too if used in `msg_send!` arguments, and...

I did a fairly quick look at the diff, and from what I gather it looks good to me! Can't really comment on the specifics of the implementation as I'm...

I thought #1901 would of fixed this, but it doesn't do anything when the view has a metal or opengl CALayer attached, as `display` won't be called, as far as...

Hmm, on further testing, this fixes especially the case when I actually render in the `Resized` event, in conjunction with drawing on `MainEventsCleared`. So I'm not sure, but is the...

I'm totally fine with changing all the callbacks to non-queueing, thats just changing the `emit_event` to not queue but handle it directly. it seems Francesca did set it to send...

In principle, just about any obj-c code should be assumed to require autoreleasepool. Empirical proof that a method doesn't need it is not fully sound, as a system update might...

Hm, both the tools that come from xcode (xcode 13.4.1, c++filt claims to be 13.1.6), and homebrew installed (llvm/clang 13.0.1) seem to demangle it just fine. And these are the...

Some idle thoughts, I'm fairly sure that this happens because of combination of 1. winit is deferring the resize event to slightly later moment, outside of the event handler 2....

_mm_dp_ps is a SSE4.1 instruction, which is used if the compiler is enabled for generating SSE4.1 code, usually by a flag like -msse4.1. Are you perhaps running your code on...

Interesting. Which compiler/platform are you on? It doesn't happen on my clang/osx build, though the gnu-simd thing is a lesser used version so there might be some issues with it.