Tagged Questions
2
votes
1answer
148 views
XNA 3.1 DrawUserPrimitives with Anti Aliasing - MultiSampling doesn't work?
So this is a continuation of a question I asked earlier today. I've built myself some nice looking ribbon trails using XNA 3.1's DrawUserPrimitives method, essentially by expanding a polygon as motion ...
0
votes
0answers
90 views
XNA Stencil Buffer AA
I'm currently using stencil buffer data for visualisation.
These data are generated by pixel shader using the clip/discard
and stencil buffer logical operations. But I need to modify this
method to ...
0
votes
3answers
645 views
XNA 4.0 in a window having jagged edges issues…Know of a method for high quality output?
I'm using this example project's XNA 4.0 form control in an application I'm writing:
http://creators.xna.com/en-US/sample/winforms_series1
It's working great and I've done quite a bit with visuals ...
2
votes
1answer
3k views
XNA Antialias question!
I've got problems with XNA and antialiasing. I can activate it using
graphics.PreferMultiSampling = true;
graphics.ApplyChanges();
however - it's only 2x antialiasing. Even if I set
...