I'm drawing several models, with the following code to set up render states:

GraphicsDevice.BlendState = BlendState.Opaque;
GraphicsDevice.DepthStencilState = DepthStencilState.Default;
GraphicsDevice.RasterizerState = RasterizerState.CullCounterClockwise;
GraphicsDevice.SamplerStates[0] = SamplerState.LinearWrap;

Some models rendered not correctly. If I change one line of code:

GraphicsDevice.DepthStencilState = DepthStencilState.DepthRead;

Now, others don't work correctly. I used 2 codes with each code segment but it still doesn't work.

How can i fix this rendering issue?


Screenshots:

I'm drawing the ground first, then the 'road' models.

Top: http://i.stack.imgur.com/xH8qp.png

When I change angle of the camera...: http://i.stack.imgur.com/Nbw3m.png

link|improve this question

80% accept rate
Post screen shots? – Andrew Russell Oct 16 '11 at 16:21
Ok, I have just edited my post. – Alen Bruce Oct 16 '11 at 17:09
feedback

1 Answer

up vote 3 down vote accepted

Your problem looks to be Z-Fighting, a problem that is caused by trying to render 2 or more polygons at the same distance from the camera.

When drawing the models you could disable the Z-buffer. DepthStencilState.None

link|improve this answer
Thanks you! If I use DepthStencilState.None, it render correctly. But, if I draw some models like house, human,..., these models always render under the 'road' model (same position). The road model always on top, overwrite these models. If I use DepthStencilState.Default, these model render correctly, them always on top, overwrite the road model, but my trouble in my post occur again. So I want to solve both problem: render correctly when I change camera's angle and order of all models are correct, how do I ? – Alen Bruce Oct 17 '11 at 8:46
If you disable the depth buffer, then it doesn't matter where models are drawn, earlier models will be hidden by ones drawn in the same place afterwards. I recommended this since you're drawing all your models at an equal distance from the camera (they are all on the same plane). Make sure you draw the ground, then the roads, then the house. If you want to use Z-buffering then draw the road slightly nearer to the camera than the ground, and the houses nearer still. – George Duckett Oct 17 '11 at 8:52
Yeah, thanks you very much. I don't have enough reputation to vote up your answer. – Alen Bruce Oct 18 '11 at 3:25
Can I ask you more one question? Now, I draw some models on the ground and I want the models which nearly my camera will render first, all of models far to my camera will be hidden by them. But the model was drawn later, it rendered first and all models were drawn first, they were hidden. I mean perspective or another like that. Can you help me ? – Alen Bruce Oct 18 '11 at 6:45
I'm not quite sure what you're asking, but since it's a new qusetion, just post a new question on this site. By the way, as well as up-voting an answer, if you asked the question you can mark an answer as the best answer by clicking the green tick next to where you vote. – George Duckett Oct 18 '11 at 6:55
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.