David Maas

Results 177 comments of David Maas

I didn't dig into anything super closely yet, but the results certainly look nice! A few random questions: * Do the newly-added vertex components actually vary between glyphs in the...

Thanks for the info! # Vertex components > Yes. Depending on the amount of shadow and color wanted, these vertex components vary. To clarify, I was referring to a single...

> This scalable font rendering is especially useful for per-monitor DPI, that is a nice use case I did not realize. How are you adjusting for the dpi? Using the...

@sgf I think you might be underestimating how complex this issue is. The GC isn't really the main issue here, it's the escape analysis required to ensure the optimization is...

Not sure if it's the SDK's responsibility or if this is something that could be fixed in ClangSharp, but in my case the issue was doubly confusing because the runtime...

> this is the case on my Linux system and in my Windows set-up. Your setup is wrong. SDL expects you to reference its `include` directory directly, none of SDL's...

> ```c > ImStr str; > str.b = "hello"; > str.e = str.b + strlen(str.b); > igTextUnformatted(str); > ``` This strikes me as the wrong way to surface `ImStr` in...

@HebaruSan It won't save anything at all. https://github.com/actions/toolkit/blob/73d5917a6b5ea646ac3173cfceb727ee914ff6ed/packages/cache/src/cache.ts#L166-L175

With Dear ImGui you're responsible for maintaining the backing store for values being edited. In your code you're constantly overwriting `v` with `temp`. You need to be more picky about...

Yeah that sounds like a solid plan. Another alternative (if the undo/redo stack issue is your main concern) is to have your undo/redo stack only actually commit on `IsItemDeactivatedAfterEdit` or...