Taylor Holliday

Results 75 issues of Taylor Holliday

https://github.com/twostraws/Sourceful/blob/04f7e85900451ebdc34345ee19bb0139f05f3a01/Sources/Sourceful/SwiftUI/SourceCodeTextEditor.swift#L139 This line causes an occasional loss of a change with SwiftUI on macOS, presumably due to reordering of updates. After typing a character, the change is undone. Why was...

Each time I enter a character in the SourceCodeTextEditor, the insertion point goes to the end. Assuming this is a bug in Sourceful, since if I replace SourceCodeTextEditor with TextEditor,...

I'm rendering gradients which appear banded even in BGR10 color depth (10 bits per color channel). So I was thinking of adding gradient dither to nanovg and doing a pull...

Caching paths is great, but sometimes your paths are changing often. In that case, you need the fastest tessellation algorithm possible. In my app, Adaptive Forward Differencing (AFD) provides a...

As I understand it, nanovg's font rendering snaps in order to improve anti-aliasing. In my app, the user can zoom in and out, so the text jumps around as it...

I wanted to look at the code for Generational References, but the link to genHeap.c in this article is broken: https://vale.dev/blog/generational-references Seems things have been moved around since then. Where's...

This renames a couple functions so it's more apparent they are pre-computations. #### Checklist - [x] All changes meet [libigl style-guidelines](https://libigl.github.io/style-guidelines/). - [ ] Adds new .cpp file. - [...

I'm noticing inconsistent results when using tao across macOS, windows and linux. To reproduce, clone https://github.com/audulus/rui and check out f92d301 run: `cargo run --example menu` on macOS: menu works as...

type: bug
platform: Windows
status: needs triage

This can create a retain loop between the delegate and PGMidi/PGMidiSource. Weak references should be used instead, per the iOS convention.

PGMidi has strong references to PGMidiConnections. When compiled with ARC, PGMidiConnection has a strong reference back to PGMidi. Thus, neither are deallocated.