Jordan Peck

Results 71 comments of Jordan Peck

See the interaction here: https://github.com/Nelarius/imnodes/issues/41#issuecomment-647132113

There was a bug found in the thread safety of SmartNodes, the latest release (0.9.5) contains the fix for it

From your code above it looks like you are creating a new SmartNode per function call, ie no cross-thread access for a given node, is that true? or is the...

Is your `xSize * ySize < 8` it could be the same bug as #89 I'm working on a fix for it now

Can you see what line of code it is crashing on?

Could you show the assembly where it crashes? Can you get the crash on a debug build for more info?

Thanks. In `FastNoise_Config.h` could you change `#define FASTNOISE_USE_SHARED_PTR false` to `true` will help determine if it's a SmartNode issue or something else

Really weird that it only happens occasionally... in your code can you check that 'fnSimplex` is not nullptr. Did you try this? > In FastNoise_Config.h could you change #define FASTNOISE_USE_SHARED_PTR...

FastNoise SIMD already supports passing in an array of positions to generate at, the hardest bit of 4D noise would be making an SIMD friendly gradient function. It's something I'm...

The architectures you listed do not support SSE/AVX I know there is some form of SIMD for power PC but I don't think I will have time to add support...