Tagged Questions

1
vote
1answer
197 views

DirectX Z buffer not working correctly

My problem centers around the Depth test in DirectX 9. I'm trying to render one object at a static point in the game and another at a point that can be changed based on input from DirectInput. One of ...
0
votes
1answer
44 views

Retrieving depthBuffer of a render for another render pass. (D3DX9)

I am rendering a scene to a texture, then using that texture and its depthBuffer in subsequent renderings to apply some effects (Depth Of Field, Bloom, etc...). Here is the problem: I manage to set ...
0
votes
1answer
464 views

DirectX depth buffering not working

For some strange reason my depth buffer is not working, i.e. the triangles drawn later always overlap, regardless of their position. I have these presenter parameters D3DPRESENT_PARAMETERS d3dpp; ...
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: ...