Nick Porcino

Results 538 comments of Nick Porcino
trafficstars

Crashes on mac as well, during this recursion in `_AddStrippedSurfaceNode`. ``` // If hdNode is connected to the surfaceshader node, recursively call // this function to make sure that surfaceshader...

Notes to an implementor: I believe the solution runs along the lines of explicitly only installing raven, ``` install(TARGETS raven) ``` and then using this flag ``` set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY TRUE) ```...

I might suggest a few metrics for evaluation. There may be others, but I'll throw these ones out to start ~ 1. Maintainability, of both the delivered code and the...

@darbyjohnston Just noticed your note about texture loading ~ I've got ImGui texture loading in the bag if you ever want to have a go on that part. It can...

An ImTextureId is just a platform handle void casted under the hood :) It's complicated under Vulkan, but all the other targets are trivial. Minimally, you can just cast and...

>This is mainly due to tabs needing unique names but could be got around fairly easily if that is a feature that is needed? Seems reasonable to go ahead with...

Themes can cover most of the issues like a correct shade of blue on a button. To Nicholas' original post, things like color pickers should for sure allow a color...

Wow, that's an elegant solution with respect to acute angle specialization, and maybe the smallest code I've seen to solve the problem in general. Very nice!

You have to ask for double-sized fonts. Instead of asking for a size of 10, ask for 20, etc.