Tagged Questions
1
vote
1answer
64 views
Working with primitives in XNA
Perhaps I am trying to use XNA in a way that it was not designed, but I would very much like to be able to draw my own primitives and save them as a bitmap, or a texture2D, or anything that will hold ...
0
votes
1answer
459 views
SharpDX Texture2D to Bitmap
I have a problem with using SharpDX. I convert a Bitmap, lock the bits with the lockBits method and then create a DataStream and build a Texture2D from it. This seems to work quite well, no error ...
2
votes
1answer
824 views
Rendering bitmap with XNA slow when grabbing image from webcam, why?
I've been working for a few weeks on grabbing a webcam image and rendering it on a windows form, but have been struggeling with speed issues the entire time. I need at least a frame rate of 10 Hz to ...
7
votes
3answers
5k views
Is there a fast alternative to creating a Texture2D from a Bitmap object in XNA?
I've looked around a lot and the only methods I've found for creating a Texture2D from a Bitmap are:
using (MemoryStream s = new MemoryStream())
{
bmp.Save(s, ...