Vladimir Vukicevic

Results 112 comments of Vladimir Vukicevic

Do you actually need the GDI interop? If dwrite is available, it seems like the crate should fully use it and not go to GDI at all.

Same switch here. With ozwdaemon, I get similar: ``` 2020-12-17 04:27:03.331781527 [20201216 20:27:03.331 PST] [ozw.library] [info]: Info - Node: 5 Received Meter Report for Electric - kWh (1) with Units...

Looks like a few overzealous AVs are flagging this: https://www.virustotal.com/gui/file/6a4a965371bc07315f784e56adce8965f88f6889aef761bf11e5f15d2e281db7

`Unsafe.As` would work -- it's just a lot of casting that would be nice to avoid, given how clean code using FlatSharp types normally looks. There also may be more...

Totally understand. I think the check needs to be that the size is identical and that it has same-named members. But I also don’t see how to really do that...

First stab at this: https://github.com/jamescourtney/FlatSharp/compare/main...vvuk:FlatSharp:unity-collections I've got the linkage mostly resolved, though I still need a UnityEngine.dll to link with. This should gain some defines for unity support and be...

Will do -- I still need to figure out how to do this in a reasonable way, as the types themselves are only defined in `UnityEngine.dll` which I can reference...

I started following one of the existing vector type integrations, and then redid it a bit — they support both runtime and AOT, and I need to just support AOT....

Oh this is actually even worse. I didn't notice that VsDevCmd.bat calls out to `powershell.exe -NoProfile -Command "& {if($PSVersionTable.PSVersion.Major -ge 3){Import-Module 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\\Microsoft.VisualStudio.DevShell.dll'; Send-VsDevShellTelemetry -NewInstanceType Cmd; }}"...

I'm toying around with this. Current problems I've ran into and workarounds: - `exa`'s `fs::file` is very Unix specific. Things like `is_block_device`/`is_char_device` don't really have a Windows equivalent. However, this...