fourst4r
fourst4r
When you run this app you have about a 50% chance to see the text rendered using DrawTextLayout lol, I'm so lost, this is a hideous bug. Works every time...
Not sure if should check `abs_name` here or not. I mainly wanted this to be able to do a `hl_dyn_call` with an abstract as argument.
### What seems to be the problem? Should be good to enable now, Edge supports AVIF as of Edge v121.  ### Operating System Microsoft Windows ### Browser Chromium (Google...
Reflaxe does not honour the @:keep meta which says > If used on a class, the class along with all fields is unaffected by DCE. If used on a field,...
There's a slight inconsistency in the way the `this` pointer works between assigning to a variable and directly returning it. Assigning to a variable gives you `Ptr`, while returning gives...
Building ```haxe function main() { var i:Int = 123; var p:cxx.Ptr = i; var pp:cxx.Ptr = p; trace(pp); // bypass dce } ``` Will generate the output ```cpp int i...
It would be handy to have the ability to use a custom entrypoint, particularly on Windows. For applications on Windows there are a few different entrypoints: ```c int __stdcall WinMain(HINSTANCE,...
For example 😅 ```haxe inline function foo() {} function main() { foo(); } ``` Will still generate a ```cpp void _Main::Main_Fields_::foo() { } ``` I only noticed this because I...
Building this code ```haxe abstract Flexible(Int) { public function new() this = 1; @:to function toAny():T return null; } function main() { var r:String = new Flexible(); trace(r); } ```...