Ambient Occlusion Shader Effect in WPF? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:50:35Z http://stackoverflow.com/feeds/question/259104 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/259104/ambient-occlusion-shader-effect-in-wpf 2 Ambient Occlusion Shader Effect in WPF? cwching 2008-11-03T16:06:44Z 2008-11-05T19:36:28Z <p>Hello All, I guess this is a multi-part question.</p> <p>I can import a 3D model into my WPF application but how do I apply an ambient occlusion shader effect to it? I know with .NET 3.5 SP1 you can do custom effects but that's limited to pixel shaders and doesn't include vertex shaders.</p> <p>I think i can do this with an XNA application but Im not familiar with XNA so the second question is: How much different is WPF and XNA? I don't seem to have any notion of XAML in XNA. How much ramp up would moving from WPF to XNA take?</p> <p>Thanks, Chris</p> http://stackoverflow.com/questions/259104/ambient-occlusion-shader-effect-in-wpf/259353#259353 2 Answer by Ray Hayes for Ambient Occlusion Shader Effect in WPF? Ray Hayes 2008-11-03T17:26:46Z 2008-11-03T17:26:46Z <p>To answer your second question:</p> <p>WPF and XNA are completely different. They do share the following:</p> <ul> <li>Built upon .net</li> <li>Use DirectX</li> <li>Can access hardware acceleration of the video card</li> </ul> <p>XNA does not have any GUI support built in and is really aimed at games (for PC and XBOX-360) whilst WPF is usable in business style applications. As you've discovered XNA does not have any XAML support, indeed it is mainly an abstract .net wrapper for DirectX.</p> http://stackoverflow.com/questions/259104/ambient-occlusion-shader-effect-in-wpf/266304#266304 2 Answer by bennage for Ambient Occlusion Shader Effect in WPF? bennage 2008-11-05T19:36:28Z 2008-11-05T19:36:28Z <p>If you have an understanding of terms like "<a href="http://www-viz.tamu.edu/students/bmoyer/617/ambocc/" rel="nofollow">ambient occlusion</a>" then you should probably be working with XNA. XNA as an API is not difficult to learn, but as was mentioned, it is intended for game development. There are lots of great <a href="http://creators.xna.com/en-US/education/" rel="nofollow">XNA tutorials</a> out there.</p> <p><strong>You can use both WPF and XNA in concert</strong>, read more about that <a href="http://stackoverflow.com/questions/43596/how-well-does-wpf-blend-with-xna-in-real-life">here</a>.</p> <p>Can you tell us more about what you are trying to do?</p>