Don Williamson

Results 111 comments of Don Williamson

I might try this if I get time https://github.com/memononen/fontstash. I already use it on an internal UI project and it's pretty flawless.

Linking for reference https://www.warp.dev/blog/adventures-text-rendering-kerning-glyph-atlases

Rather than generating the atlas offline, we might find some clues on water-tight atlas generation from xterm.js: * https://github.com/xtermjs/xterm.js/tree/master/addons/xterm-addon-webgl/src * https://github.com/xtermjs/xterm.js/pull/1790 Interestingly, it appears to render a quad per glyph,...

I haven't worked with Metal for years, now, so unable to check its status (no HW to test). We have multiple Metal users at the moment so hopefully some fixes...

A quick look over the code doesn't point to anything obvious. It's unfortunate that you can only sample Metal at the command buffer level, though. But I guess that's tiled...

Yeah, that's a known assert and not caused by your change. Safe to comment it out as it's really only for debug to track unreleased allocations.

You need to call these once at the end of each of your frames: ``` rmt_PropertySnapshotAll(); rmt_PropertyFrameResetAll(); ```

Right now that API is in flux because I'm uncomfortable requiring people call a per-frame function to kick this all off. However, there's no way to do automatic frame resets...

Those calls need to be only on one of your main threads. This is very odd; we have builds across all of the Apple platforms showing properties at the moment....

Thanks for you help on this, I have copied over your fixes. If you are still having issues with properties, can you compile and run `sample/dump.c` and see if it...