I'll make a note to take a look and see what this would entail.
I'm not sure if you can set codepage to utf-16. I think it is only relevant for 8-bit code pages a…
For ascii only it will work fine, no problems there. What if the terminal expected UTF-16? Isn't U…
If you output wrong encoding than user expects, they will see garbage (or you'll receive garbage i…
If you output utf8 bytes, then the output will receive utf8 bytes. If you output utf16 bytes, then…
ReadFile/WriteFile is fine if you want to output raw bytes - so whatever you'll write, it will be …
What is the proper way to handle input/output from/to the console in Win32? There are a lot of fun…
Yes, that is how I normally implement my page allocator before I know about ASAN. Does ASAN also i…
every allocation gets put in its own page with surrounding guard pages to catch buffer overflows A…
I'm unsure how ASAN costs more memory than a page allocator. Because a shadow byte accounts for 8 …
Yes, enabling ASAN makes your code slower. And requires a lot more memory.See
Before using ASAN, what I usually do to "poison" a region of memory is to have an end-of-page allo…
Leo —
I see. That sounds like a robust approach. In the case of a path tracer in fragment/compute shader…
The only way I can see that working is by doing double buffering on the slow thing. That way you c…
Minidump debugging. Symbol server support. Custom pdb locations (I think remedy added this only ve…
Leo —
Let's say I'm path tracing a fairly complex scene, which results in a low framerate, but I would a…
I pretty much use only VS debugger because other debuggers are lacking too many features I use. Ca…
I pretty much use only VS debugger because other debuggers are lacking too many features I use. If…
F11 will step into ASAN internals, but you can disable that with /JMC compiler argument. It's beco…
This is an additional idea that could be added to the new site. Instead of having specific educat…
Just wanted to support mrmixer in what they were saying, I'm not a big fan of discord (mainly it j…
When you run in VS, you get this: image.png Source code stops on line that triggers asan, but you …
So if you're using VS or Remedy, can you fix any of these things: When ASAN is triggered, does the…
Glad you're back on BEdit. 10 seconds still seems like a long load time. Did you plan to have the …
Oh, sorry I misread raddbg. In raddbg support for asan probably is in worse state. I think some th…
windows.h should not produce any warnings on /W4 and /analyze Yeah, it's not "Windows.h", it's win…
Jens —
One of my wishlist-items for BEdit has been plotting, especially when dealing with wav-files. Is t…
Yeah, it's pretty normal for it to take more time - as it is doing more things. Usually you don't …
Nice to know I'm not alone.
/analyse turns the static code analyzer On. The static code analyzer will check your code for erro…