Mohit Sethi
Mohit Sethi
Recently I found myself working on performance(profiling) related tasks and realized there was no "detached launch target" option. A button for "Detached launch" next to "Launch and Run" would be...
I get similar errors while linking quite a few libraries ```cpp Error(023): incomplete write occurred, 2.99 KiB written, expected 7.11 KiB, file D:\perforce\\.lib ``` command used: ``` /DLL /NOLOGO /MACHINE:X64...
Reposting from odin discord channel. Basically if we have `rows($, array(data, len), len, capacity)`, we will not be able to refer to "array" bit directly. I proposed a possible solution...
We have our fiber system and it has a callstack array for pre-empted fibers which raddbg can parse as you can see in the screenshot, but can't navigate to it...
Odin has builtin support for these accessors including `rgba` and swizzling. example: vec: [4]f32 In raddbg I wasn't able to inspect `vec.x`, `vec.y`, `vec.z`, `vec.w` obviously, had to change to...
Example: ```odin Scene :: struct { registry: Database, } Entity :: struct { transform: Transform, using scene: ^Scene } update_transform(using entity: ^Entity) { log.info("%v ", transform) log.info("%v", entity.registry) } ```...