Jump to content

  • Log In with Google      Sign In   
  • Create Account

Awesome job so far everyone! Please give us your feedback on how our article efforts are going. We still need more finished articles for our May contest theme: Remake the Classics

RenHoek

Member Since 07 Jul 2006
Offline Last Active Nov 04 2012 01:04 AM
-----

Topics I've Started

Looking for a good+solid implementation of TomF's vertex-cache-optimization algorithm

31 October 2012 - 04:01 AM

Hi all

I'm coding for modern CPU's.
But the meshes I'm sending to the graphics card are pretty much directly output from Maya. I guess they will have poor vertex-cache-ordering.
I'm hoping to use a vertex-cache-optimization pre-pass on the meshes to gain some performance. As suggested here
http://home.comcast.net/~tom_forsyth/papers/fast_vert_cache_opt.html

Does anyone know of the best technique to use on modern cards? Is it still Toms algorithm? The models I have to render have 1,000,000+ triangles. :(
So I would like the pre-pass to run fast, as well as produce good results. ( like Toms algorithm )

2nd Question.
Does anyone know of a solid and good implementation of Toms algorithm? The ones I'm finding on the internet seem to be from junior/hobby programmers who are not writing the most efficient code.

Thanks all
Ren

Notes+Questions on Perlin noise and its derivatives

24 February 2012 - 04:09 AM

Hi all

I'm currently doing a lot of work with GPU procedural noise in GLSL.
Here are a few questions + notes regarding this.

1) Noise Derivatives
One area I'm working on right now is calculating analytical derivatives for various noises.

Inigo Quilez posted some notes on how to calculate the derivatives of value noise. ( although he incorrectly calls it perlin noise )
=> http://www.iquilezles.org/www/articles/morenoise/morenoise.htm
( This noise derivative is extremely easy and fast to implement in GLSL. More so that what Inigo has posted in his CPU version. Let me know if you want it and I can post )

Inigos approach does not work for Perlin noise. Some people have incorrectly implemented it thinking that it does.
=> https://github.com/cinder/Cinder/blob/master/src/cinder/Perlin.cpp [ NOTE: INCORRECT! ]

I have only seen one correct implementation of perlin noise with derivatives. Although it is only in 2D.
=> http://www.decarpentier.nl/scape-procedural-extensions

Perlins Simplex noise allows for a easy derivative calculation, as kindly demonstrated by Stefan Gustavson here...
=> http://webstaff.itn.liu.se/~stegu/aqsis/flownoisedemo/

So my question / request is if anyone has implemented Classic Perlin Noise with Analytical derivatives in 3D? Or do they know of any implementations? Thanks!

2) Normalizing Classic Perlin noise to -1.0->1.0
I've noticed a few threads on the internet of guys trying to figure out how to normalize perlin noise to a -1.0->1.0 range.
eg => http://www.gamedev.net/topic/285533-2d-perlin-noise-gradient-noise-range--/
This particular thread goes on for a _very_ long time. It boggles my brain how much time they put into this thred. Sorry if they finally got the answer, or that I maybe missed the point of the thread, but I didn't have time to read it all.

For me it was a very easy thing to solve so I'll post my answer here for anyone who is interested.

The way to do it is to imagine the maximum possible value which could be generated by the perlin noise algorithm.
In 2D this would be having all 4 ( normalized ) gradient vectors pointing to the very center of the square, and the sample being taken from the center of that square. This generates a value of sqrt( 0.5 ) = 0.70710678.....
So the normalization value to scale the noise to a -1.0->1.0 range is 1.0/sqrt(0.5)
In 3D it is 1.0/sqrt(0.75)

Easy! :)

Ok. Thanks all
Ren Hoek

PARTNERS