Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GLSL gl_FragCoord.z Calculation and Setting gl_FragDepth

Tags:

So, I've got an imposter (the real geometry is a cube, possibly clipped, and the imposter geometry is a Menger sponge) and I need to calculate its depth.

I can calculate the amount to offset in world space fairly easily. Unfortunately, I've spent hours failing to perturb the depth with it.

The only correct results I can get are when I go:

gl_FragDepth = gl_FragCoord.z 

Basically, I need to know how gl_FragCoord.z is calculated so that I can:

  • Take the inverse transformation from gl_FragCoord.z to eye space
  • Add the depth perturbation
  • Transform this perturbed depth back into the same space as the original gl_FragCoord.z.

I apologize if this seems like a duplicate question; there's a number of other posts here that address similar things. However, after implementing all of them, none work correctly. Rather than trying to pick one to get help with, at this point, I'm asking for complete code that does it. It should just be a few lines.

like image 970
imallett Avatar asked Apr 22 '12 03:04

imallett


1 Answers

For future reference, the key code is:

float far=gl_DepthRange.far; float near=gl_DepthRange.near;  vec4 eye_space_pos = gl_ModelViewMatrix * /*something*/ vec4 clip_space_pos = gl_ProjectionMatrix * eye_space_pos;  float ndc_depth = clip_space_pos.z / clip_space_pos.w;  float depth = (((far-near) * ndc_depth) + near + far) / 2.0; gl_FragDepth = depth; 
like image 142
imallett Avatar answered Sep 21 '22 11:09

imallett