XNA on graphics card. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:18:40Z http://stackoverflow.com/feeds/question/486907 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/486907/xna-on-graphics-card 0 XNA on graphics card. eflles 2009-01-28T08:39:00Z 2009-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#486914 0 Answer by Quintin for XNA on graphics card. Quintin 2009-01-28T08:43:24Z 2009-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#486969 3 Answer by Nailer for XNA on graphics card. Nailer 2009-01-28T09:06:50Z 2009-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#487113 2 Answer by erikkallen for XNA on graphics card. erikkallen 2009-01-28T10:14:55Z 2009-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>