Tagged Questions

1
vote
2answers
86 views

opengl shader pipeline depth calculation

i'm trying to figure out what happens internally in a vertex-fragment shader pair. To be more specific i'm trying to compare depth values on the cpu. On of these depth values is calculated by a shader ...
1
vote
1answer
558 views

Implementing your own depth buffer with GLSL

I need a datastructure of the same size as the normal depth buffer and I need to be able to read from and write to it in a shader. Is this possible, and what does this datastructure look like?
0
votes
1answer
168 views

How to render depth linearly in modern OpenGL with gl_FragCoord.z in fragment shader?

I read lots of information about getting depth with fragment shader. such as http://www.opengl.org/discussion_boards/ubbthreads.php?ubb=showflat&Number=234519 but I still don't know whether or ...
0
votes
0answers
64 views

How do I translate a vertex horizontally in world coordinates in the vertex shader after the transformation has been applied?

I wish to do depth clamping for axis aligned bounding boxes as GL_DEPTH_CLAMP_NV is not available on my platform. So far I clamped the vertexes that have the zc coordinate beyond wc like this. ...
0
votes
1answer
144 views

GLSL check if fragment is on geometry

I am currently writing the positions of my geometry to the RGB channels of gl_FragColor and I would like to write 1.0 to the alpha channel if the fragment is part of geometry, and 0.0 if its empty. ...
0
votes
1answer
321 views

How does this work in computing the depth map?

From this site: http://www.catalinzima.com/?page%5Fid=14 I've always been confused about how the depth map is calculated. The vertex shader function calculates position as follows: ...
-1
votes
1answer
110 views

How to emulate GL_DEPTH_CLAMP_NV?

I have a platform where this extension is not available ( non NVIDIA ). How could I emulate this functionality ? I need it to solve far plane clipping problem when rendering stencil shadow volumes ...