Sunbreak
Sunbreak
> hi there! thanks for your pr. could you share the insight of using asan libs in production apps? ASan helps to debug but reduce the performance. We use it...
Yep. This PR is kind of draft. Feel free to change if you want
Interested to help. Could someone elaborate the usecase?
> More specificly, I found out that we already have a somewhat support for desktop: In `lib/src/bindings/libsodium.dart` The library can already be loaded on the desktop platforms. https://github.com/firstfloorsoftware/flutter_sodium/tree/master/lib/src/bindings is code...
> @lucaszanella So there's no way of rendering textures in flutter web without WASM? I wanted to play videos from an RTSP camera A little off topic. I'm working on...
> @secretshardul Check out [Microsoft's .NET to WASM project, Blazor](https://devblogs.microsoft.com/aspnet/blazor-webassembly-3-2-0-now-available/). Will Flutter web move on similar lines one day? Do you mean `CanvasKit`? https://medium.com/flutter/flutter-web-support-updates-8b14bfe6a908
Does `--disable-breakpad` work on Apple Silicon?
If variadic C functions is unsupported, could [inline function generation](https://github.com/dart-lang/native/issues/383) be an option? For example, `hidctl_open` could be a wrapper for `open` ```c #include static inline int hidctl_open (const char...
I'm working on https://github.com/Sunbreak/logic_conf.dart, a re-implementation of https://github.com/libusb/hidapi The linux implementation use `open(__path, __oflag,...)` in ``: https://man7.org/linux/man-pages/man2/open.2.html Is it possible to write the wrap code manually?
> Can you just bind to open() via a different signature in Dart (either with 2 or 3 parameters)? Could you shed some light on how to bind with 2...