Tagged Questions

12
votes
2answers
5k views

Random / noise functions for GLSL

As the GPU driver vendors don't usually bother to implement noiseX in GLSL, I'm looking for a "graphics randomization swiss army knife" utility function set, preferably optimised to use within GPU ...
4
votes
2answers
213 views

C# Version of Improved Noise keeps returning 0

I'm trying to implement Improved Noise in my XNA game, but my Improved Noise function keeps returning 0.0f. It's the exact same code as Ken Perlin's (http://mrl.nyu.edu/~perlin/noise/), just ported ...
2
votes
1answer
163 views

Fastest Perlin-Like 3D noise algorithm?

It's been well over 20 years since Ken Perlin first invented his noise. Has anybody managed to make a faster kind of 3D noise generator with properties close to Perlin's (procedural, natural-looking ...
1
vote
2answers
1k views

Good Perlin noise resources/implementation?

Are there any good resources out there detailing Perlin noise generation? I understand that most languages have noise generating libraries available, but I'm interested in creating my own for ...
1
vote
1answer
152 views

Procedural Hash Function

I am wondering what is the best hash function for procedural textures, especially perlin noise. I know about the PRNG posted on this page, but this claims that it is not a good PRNG Thanks
0
votes
1answer
95 views

Java: 2D Perlin Noise Creation

There are not many easy-to-follow Perlin Noise tutorials out there and certainly not in Java or 2D. I followed this tutorial to a point but it doesn't explain 2D noise very much at all. I know you ...
0
votes
1answer
57 views

Generation of Terrain Noise with a Mask?

I have a 2D map in black-and-white with the white parts that should be above sea-level and the black parts below sea-level. I'm not sure how to go about generating terrain to fit to that mask. It ...