XNA on graphics card. - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T03:18:40Zhttp://stackoverflow.com/feeds/question/486907http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/486907/xna-on-graphics-card0XNA on graphics card.eflles2009-01-28T08:39:00Z2009-01-28T10:31:46Z
<p>How can I program graphics on a graphics card with XNA?</p>
<p>(How do I move the workload onto the graphics card)</p>
http://stackoverflow.com/questions/486907/xna-on-graphics-card/486914#4869140Answer by Quintin for XNA on graphics card.Quintin2009-01-28T08:43:24Z2009-01-28T10:31:46Z<p>Have you tried doing some pixel shaders through DirectX? NVIDIA has <a href="http://developer.nvidia.com/object/gpu_programming_guide.html" rel="nofollow">programming guides</a>. You may also want to check out <a href="http://www.gpgpu.org" rel="nofollow">GP GPU</a>.</p>
http://stackoverflow.com/questions/486907/xna-on-graphics-card/486969#4869693Answer by Nailer for XNA on graphics card.Nailer2009-01-28T09:06:50Z2009-01-28T09:14:18Z<p>Explained in a very simplified way:</p>
<p>All of the graphics are automatically drawn by the graphics card. There is no software rendererer mode in XNA.</p>
<p>The way XNA is set up most geometry is transferred to the graphics card Vertex Buffer Objects. A fixed pipeline approximization or shaders are then applied to the data by the graphics card and displayed on screen.</p>
<p>In short: If you want to do operations on your data while it's on the graphics card. Use vertex and pixel shaders.</p>
<p>EDIT: </p>
<p>You should also delve into the details of the graphics pipeline to understand better how graphic cards work.</p>
http://stackoverflow.com/questions/486907/xna-on-graphics-card/487113#4871132Answer by erikkallen for XNA on graphics card.erikkallen2009-01-28T10:14:55Z2009-01-28T10:14:55Z<p><a href="http://www.riemers.net" rel="nofollow">http://www.riemers.net</a> is a greate site for understanding XNA and graphics programming in general.</p>